Skip to content

WIP add workflows

WIP add workflows #3

name: "Test notebooks"
on: [push, pull_request, workflow_dispatch]
concurrency:
cancel-in-progress: true

Check failure on line 5 in .github/workflows/test-notebooks.yml

View workflow run for this annotation

GitHub Actions / Test notebooks

Invalid workflow file

The workflow is not valid. .github/workflows/test-notebooks.yml (Line: 5, Col: 3): Required property is missing: group
jobs:
tests:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.11
- name: 'Install dependencies'
run: |
python -m pip install -U -r requirements.txt
python -m pip install -U pytest
- name: 'Run tests'
run: python -m pytest tests