Skip to content

Commit

Permalink
Always install all dependencies in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
druzsan committed Feb 8, 2024
1 parent fe7f167 commit 767c20c
Showing 1 changed file with 4 additions and 8 deletions.
12 changes: 4 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,7 @@ jobs:
with:
python-version: 3.12
- run: python -m pip install -IU pip setuptools wheel
- run: python -m pip install -IUr requirements.txt
- run: python -m pip install -IU black
- run: make init
- run: make check-format
typecheck:
name: '🔍 Check Types'
Expand All @@ -25,8 +24,7 @@ jobs:
with:
python-version: 3.12
- run: python -m pip install -IU pip setuptools wheel
- run: python -m pip install -IUr requirements.txt
- run: python -m pip install -IU mypy
- run: make init
- run: make typecheck
lint:
name: '🔍 Lint'
Expand All @@ -37,8 +35,7 @@ jobs:
with:
python-version: 3.12
- run: python -m pip install -IU pip setuptools wheel
- run: python -m pip install -IUr requirements.txt
- run: python -m pip install -IU ruff
- run: make init
- run: make lint
# Test stage
unit-test:
Expand All @@ -50,6 +47,5 @@ jobs:
with:
python-version: 3.12
- run: python -m pip install -IU pip setuptools wheel
- run: python -m pip install -IUr requirements.txt
- run: python -m pip install -IU pytest
- run: make init
- run: make test

0 comments on commit 767c20c

Please sign in to comment.