Skip to content

Add annotated references #10

Add annotated references

Add annotated references #10

Workflow file for this run

name: csl-reference-ci
on:
push:
branches:
- main
pull_request:
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup python and hatch
uses: Fusion-Power-Plant-Framework/fppf-actions/setup-hatch@main
with:
python-version: "3.11"
- name: Lint
run: hatch run lint:fmt
pytest:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
python-version: ["3.10", "3.11", "3.12", "3.13"]
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup python and hatch
uses: Fusion-Power-Plant-Framework/fppf-actions/setup-hatch@main
with:
python-version: ${{ matrix.python-version }}
- name: Run pytest
run: hatch run test:tests-cov