Skip to content

Initial commit

Initial commit #7

Workflow file for this run

name: CI
on:
pull_request:
branches: main
jobs:
test:
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
python-version:
- '3.10'
- '3.11'
- '3.12'
runs-on: ${{ matrix.os }}
container: mrbuche/exodus
steps:
- name: checkout
uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: install
run: |
python -m venv venv
. venv/bin/activate
pip install .[cpu,test]
- name: test-exodus
run: |
python -c 'import exodus3 as exodus'
- name: pytest
run: python -m pytest test --cov=pancax