Skip to content

Add S3 storage for results, add TrICal emulation backend, switch results to HDF5 format #14

Add S3 storage for results, add TrICal emulation backend, switch results to HDF5 format

Add S3 storage for results, add TrICal emulation backend, switch results to HDF5 format #14

Workflow file for this run

name: CI
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
workflow_dispatch:
permissions:
contents: read
jobs:
build:
strategy:

Check failure on line 15 in .github/workflows/pytest.yml

View workflow run for this annotation

GitHub Actions / CI

Invalid workflow file

The workflow is not valid. .github/workflows/pytest.yml (Line: 15, Col: 5): Required property is missing: runs-on
fail-fast: false
matrix:
version:
- "3.10"
- "3.11"
- "3.12"
- "3.13"
os: [ubuntu-latest, windows-latest, macos-latest]
arch:
- x64
name: Python ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.version }}
cache: "pip"
- name: Install uv
uses: astral-sh/setup-uv@v4
with:
enable-cache: true
- name: Install the project
run: uv pip install .[tests]
- name: Run tests
run: uv run pytest tests