Skip to content

Features (#1)

Features (#1) #3

Workflow file for this run

name: Lint and Test Package
on:
push:
branches:
- devel
- main
jobs:
ci:
strategy:
fail-fast: false
matrix:
python-version: ["3.12"]
poetry-version: ["1.8.2"]
os: [ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}

Check failure on line 16 in .github/workflows/test.yaml

View workflow run for this annotation

GitHub Actions / .github/workflows/test.yaml

Invalid workflow file

You have an error in your yaml syntax on line 16
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version}}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install poetry
- run: poetry install --no-interaction --with dev
- run: poetry run pytest