Skip to content

Commit

Permalink
chore(ci): setup python first, fix test launching
Browse files Browse the repository at this point in the history
  • Loading branch information
gciatto committed Mar 25, 2024
1 parent 199e12e commit 9c9e6fe
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,11 @@ jobs:
group: ${{ github.workflow }}-run-unit-tests-${{ matrix.python-version }}-${{ matrix.os }}-${{ github.event.number || github.ref }}
cancel-in-progress: true
steps:
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}

- name: Install poetry
run: pip install poetry

Expand All @@ -44,4 +49,4 @@ jobs:
run: poetry lock && poetry install

- name: Test
run: .venv/bin/python -m unittest discover -v -s tests -t .
run: .venv/bin/python -m unittest discover -v -s tests

0 comments on commit 9c9e6fe

Please sign in to comment.