Skip to content

Factor out sphinx from testing workflow #14

Factor out sphinx from testing workflow

Factor out sphinx from testing workflow #14

Workflow file for this run

name: Test workflow
on:
push:
branches:
- "**"
- "!master"
jobs:
test:
runs-on: ubuntu-latest
name: Run tests
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Installation
run: pip install .
- name: Install test framework
run: pip install pytest
- name: Testing
run: pytest
- name: Build sphinx
uses: ./.github/workflows/sphinx.yml