Skip to content

Commit

Permalink
ci: fix test step
Browse files Browse the repository at this point in the history
  • Loading branch information
u8slvn committed Feb 6, 2024
1 parent f5a9b23 commit 132457a
Showing 1 changed file with 13 additions and 4 deletions.
17 changes: 13 additions & 4 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,23 @@ jobs:
with:
python-version: '3.10'

- name: Install pre-commit
run: python -m pip install pre-commit
- name: Setup python environment
run: |
python -m venv .venv
source .venv/bin/activate
python -m pip install pre-commit
python -m pip install -r requirements-dev.txt
- name: Check quality
run: make lint
run: |
source .venv/bin/activate
make lint
- name: Check tests
run: make test
run: |
source .venv/bin/activate
make dev
make test
linux:
name: Build linux
Expand Down

0 comments on commit 132457a

Please sign in to comment.