Files
screeps-deploy-action/.gitea/workflows/lint.yaml
Philipp Horstenkamp e5773d3235
All checks were successful
Lint / pre-commit Linting (push) Successful in 1m23s
chore: format devcontainer.json and lint.yaml for consistency
2025-12-27 01:39:31 +01:00

19 lines
342 B
YAML

name: Lint
on:
push:
workflow_dispatch:
jobs:
pre-commit-lint:
name: pre-commit Linting
runs-on: pi
steps:
- uses: actions/checkout@v6
- uses: actions/setup-python@v6
- run: pip install pre-commit
shell: bash
- name: Pre Commit
run: SKIP=no-commit-to-branch pre-commit run -a
shell: bash