Skip to content

Merge branch 'main' of https://github.com/undefined-rainy-storm/dummy… #2

Merge branch 'main' of https://github.com/undefined-rainy-storm/dummy…

Merge branch 'main' of https://github.com/undefined-rainy-storm/dummy… #2

Workflow file for this run

name: test
on:
- push
jobs:
test:
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