Skip to content

doc: firts steps towards a structured API documentation #75

doc: firts steps towards a structured API documentation

doc: firts steps towards a structured API documentation #75

Workflow file for this run

name: Run Tests
on:
push:
branches:
- develop
tags: # ignores tag pushes
pull_request:
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os:
- macos-latest
- ubuntu-latest
python-version:
- "3.10"
steps:
- name: Checkout Repository
uses: actions/checkout@v4
with:
submodules: recursive
- name: Setup Environment
uses: ./.github/actions/setup_environment
with:
python-version: ${{ matrix.python-version }}
- name: Install Dependencies
run: |
pip install -r requirements.txt
- name: Install Project
run: |
pip install .
- name: Run Tests
run:
pytest --no-header -v test