Skip to content

Test: Changes with link and format errors #11

Test: Changes with link and format errors

Test: Changes with link and format errors #11

Workflow file for this run

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"