Skip to content

ci: linux and macos #44

ci: linux and macos

ci: linux and macos #44

Workflow file for this run

name: ci
env:
CMAKE_BUILD_PARALLEL_LEVEL: 4
CTEST_PARALLEL_LEVEL: 0
CTEST_NO_TESTS_ACTION: error
CMAKE_BUILD_TYPE: Release
on:
push:
paths:
- "**.py"
- .github/workflows/ci.yml
jobs:
unix:
strategy:
matrix:
os: [ubuntu-24.04, macos-latest]
python-version: ["3.9", "3.13"]
env:
FC: gfortran-14
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- run: pip install .[tests,lint]
- run: flake8
- run: mypy
- run: pytest