Skip to content

Rename test.yml to test.yml #1

Rename test.yml to test.yml

Rename test.yml to test.yml #1

Workflow file for this run

name: test
on:
- push
jobs:
ci:
strategy:
fail-fast: false
matrix:
python-version: ["3.10"]
poetry-version: ["1.8.3"]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- uses: abatilo/actions-poetry@v2
with:
poetry-version: ${{ matrix.poetry-version }}
- name: Run test
run: >
poetry install
poetry run pytest -v