Skip to content

Commit

Permalink
fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
luto committed Dec 17, 2023
1 parent 6726980 commit 0b1528c
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,14 @@ jobs:
uses: actions/setup-python@v4
with:
python-version: '3.10'
cache: 'pip'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
make setup
- name: Build and install package
run: |
make build
make install
- name: Run tests
run: py.test
run: |
make test

0 comments on commit 0b1528c

Please sign in to comment.