Skip to content

Commit

Permalink
task(ci): wip (part 2)
Browse files Browse the repository at this point in the history
  • Loading branch information
svaponi committed Apr 18, 2024
1 parent 67722ac commit f892ea3
Showing 1 changed file with 12 additions and 5 deletions.
17 changes: 12 additions & 5 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,20 @@ on:
jobs:
Run-Tests:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ "3.12" ]
steps:
- uses: actions/checkout@v3
- name: Checkout
uses: actions/checkout@v4
- name: Install poetry
run: pipx install poetry
- uses: actions/setup-python@v3
- name: Set up python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: '3.12'
python-version: ${{ matrix.python-version }}
cache: 'poetry'
- run: poetry install
- run: poetry run pytest
- name: Install dependencies
run: poetry install
- name: Run tests
run: poetry run pytest

0 comments on commit f892ea3

Please sign in to comment.