Skip to content

Add ORCIDs and revise build and test instructions. #11

Add ORCIDs and revise build and test instructions.

Add ORCIDs and revise build and test instructions. #11

Workflow file for this run

name: CI Lint and Test
on:
push:
branches:
- main
- develop
permissions:
contents: read
concurrency:
group: ci-${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
lint-and-test:
runs-on: ubuntu-latest
timeout-minutes: 15
strategy:
fail-fast: false
matrix:
python-version: ["3.13", "3.14"]
steps:
- name: Checkout repository
uses: actions/checkout@v6
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: Set up uv
uses: astral-sh/setup-uv@v8.1.0
- name: Sync dependencies
run: uv sync --all-groups
- name: Lint (ruff)
run: uv run ruff check .
- name: Run tests (pytest)
run: uv run pytest