Правки #12
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: Checks | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
init: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v2 | |
- name: Install requirements | |
run: pip install -r requirements.txt | |
- name: Install dev requitements | |
run: pip install ruff | |
- name: Ruff | |
run: ruff check . |