Skip to content

Merge pull request #427 from fvaleye/dependabot/pip/sphinx-7.4.7 #1193

Merge pull request #427 from fvaleye/dependabot/pip/sphinx-7.4.7

Merge pull request #427 from fvaleye/dependabot/pip/sphinx-7.4.7 #1193

Workflow file for this run

name: build
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: 3.9
- name: Install Poetry
uses: abatilo/actions-poetry@v4
- name: Check Python
run: |
make init
pip install pre-commit
pre-commit install
make format
- name: Check Data
run: make check-data
unit_test:
strategy:
fail-fast: false
matrix:
os:
- macos-13
- macos-14
- macos-15
- windows-2019
- ubuntu-latest
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: 3.9
- name: Install Poetry
uses: abatilo/actions-poetry@v4
- name: Run unit tests
run: |
make init
make test-unit
- name: Run security and complexity
run: |
make security
make complexity
- name: Build Sphinx documentation
run: |
make build-documentation