Skip to content

split up the validation yaml file into individual files for each model #74

split up the validation yaml file into individual files for each model

split up the validation yaml file into individual files for each model #74

Workflow file for this run

name: Test package
on:
push:
branches: ['main']
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
check:
name: Linting, formatting, static analysis
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: pdm-project/setup-pdm@v4
with:
python-version: '3.13'
cache: true
cache-dependency-path: 'pdm.lock'
- name: Install necessary dependencies
run: pdm install --group dev
- name: Run checks
run: pdm run check
test:
name: Unit tests
runs-on: ubuntu-latest
needs: check
strategy:
matrix:
python-version: ['3.13']
steps:
- uses: actions/checkout@v5
- uses: pdm-project/setup-pdm@v4
with:
python-version: ${{ matrix.python-version }}
cache: true
cache-dependency-path: 'pdm.lock'
- name: Install necessary dependencies
run: pdm install --group dev
- name: Run tests
run: pdm run test