Skip to content

Commit

Permalink
ci: fixing
Browse files Browse the repository at this point in the history
  • Loading branch information
monologg committed Jan 15, 2024
1 parent bded67d commit 0b6b349
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,10 +59,16 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install cython==3.0.8 kss==1.3.1
pip install cython==3.0.8
pip install -r requirements.txt -r requirements-dev.txt
pip install .
- name: Verify Cython installation
run: pip list | grep Cython

- name: Verify Cython installation
run: python -c "import Cython; print(Cython.__version__)"

- name: Run Test Code
run: |
make test-cov

0 comments on commit 0b6b349

Please sign in to comment.