Skip to content

Rebuilding docs requirements tree to get the builds working again. #1508

Rebuilding docs requirements tree to get the builds working again.

Rebuilding docs requirements tree to get the builds working again. #1508

Workflow file for this run

name: Unit Tests
on:
push:
branches: [ master ]
paths:
- 'exporters/**'
- 'pyproject.toml'
- '.github/workflows/unittests.yml'
- 'Makefile'
pull_request:
branches: [ master ]
paths:
- 'exporters/**'
- 'pyproject.toml'
- '.github/workflows/unittests.yml'
- 'Makefile'
jobs:
unit-test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ['3.9', '3.10', '3.11']
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
cache-dependency-path: |
**/requirements*.txt
pyproject.toml
- name: Install dependencies
run: |
make dev-env
- name: Test with pytest
run: |
make unit-tests