Skip to content

Commit

Permalink
💚 Make github actions happy
Browse files Browse the repository at this point in the history
  • Loading branch information
Dmytro Parfeniuk committed Jul 21, 2024
1 parent 4bc6060 commit 6355709
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,21 +14,27 @@ jobs:

steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}

- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e '.[code_quality]'
- name: Run tests
run: python -m pytest tests
run: python -m pytest tests/unit

- name: Run linter
run: python -m ruff check src tests

- name: Check formatting
run: python -m black --check src tests && python -m isort --check src tests
run: |
python -m black --check src tests
python -m isort --check src tests
- name: Check types
run: python -m mypy src tests

0 comments on commit 6355709

Please sign in to comment.