Skip to content

Refactor folder structure and Add data structure placeholder #3

Refactor folder structure and Add data structure placeholder

Refactor folder structure and Add data structure placeholder #3

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