Skip to content

Commit

Permalink
fix GHA
Browse files Browse the repository at this point in the history
  • Loading branch information
felipao-mx committed Aug 14, 2024
1 parent b195be4 commit 914f74f
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.8, 3.9, 3.10]
python-version: ['3.8', '3.9', '3.10']
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
Expand All @@ -45,7 +45,9 @@ jobs:
with:
python-version: 3.8
- name: Install dependencies
run: make install
run: |
pip install -q pdm
make install
- name: Generate coverage report
run: make test
- name: Upload coverage to Codecov
Expand Down

0 comments on commit 914f74f

Please sign in to comment.