TISbackup/.gitea/workflows/lint.yml
k3nny 4337b0e925
Some checks failed
lint / docker (push) Has been cancelled
fix(tisbackup): update to python 3.14
2026-06-05 00:13:16 +02:00

25 lines
506 B
YAML

name: lint
on:
push:
branches:
- 'master'
jobs:
docker:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Install Python
uses: actions/setup-python@v4
with:
python-version: '3.14'
cache: 'pip' # caching pip dependencies
- run: pip install ruff
- run: |
ruff check .
# - uses: stefanzweifel/git-auto-commit-action@v4
# with:
# commit_message: 'style fixes by ruff'