Test: Changes with link and format errors #11
Workflow file for this run
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: CI | |
on: | |
push: | |
jobs: | |
ci: | |
runs-on: ubuntu-latest | |
name: Code analysis and tests | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.11" | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install pylint black | |
pip install -r requirements.txt | |
- name: Lint with pylint | |
run: | | |
pylint $(git ls-files '*.py') | |
- name: Check formatting with black | |
run: | | |
black $(git ls-files '*.py') --diff | |
- name: Tests | |
run: | | |
python -m unittest discover -s tests -p "test_*.py" |