Merge branch 'main' of https://github.com/clemsgrs/dinov2 #19
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Lint | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
run-linters: | |
name: Run linters | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: 3.9 | |
cache: 'pip' | |
cache-dependency-path: '**/lint*.txt' | |
- name: Install Python (development) dependencies | |
run: | | |
pip install -r lint.txt | |
- name: Run flake8 | |
run: | | |
flake8 | |
- name: Run black | |
if: always() | |
run: | | |
black --check dinov2 | |
- name: Run pylint | |
if: always() | |
run: | | |
pylint --exit-zero dinov2 |