pull/387/head
Wyatt Stanke 1 year ago
parent 92b935e29e
commit 96f3d9c1b7
No known key found for this signature in database
GPG Key ID: CE6BA5FFF135536D

@ -23,12 +23,14 @@ jobs:
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }} - name: Set up Python ${{ matrix.python-version }}
uses: "snok/install-poetry@v1" id: setup-python
uses: actions/setup-python@v5
with: with:
python-version: ${{ matrix.python-version }} python-version: ${{ matrix.python-version }}
poetry-version: "1.4.2" - name: Set up Poetry
install-command: poetry install uses: "snok/install-poetry@v1"
- name: Install dependencies
run: poetry install --no-interaction
- name: Run tests - name: Run tests
run: | run: pytest
pytest
shell: bash shell: bash
Loading…
Cancel
Save