Skip to content

WMM2025 World Magnetic Model #1

WMM2025 World Magnetic Model

WMM2025 World Magnetic Model #1

Workflow file for this run

name: ci
env:
CMAKE_BUILD_TYPE: Release
on:
push:
paths:
- "**.py"
- "**.cmake"
- "**/CMakeLists.txt"
- .github/workflows/ci.yml
jobs:
linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: '3.7'
- run: pip install .[tests,lint]
- run: flake8
- run: mypy
- run: pytest
macos:
needs: linux
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: '3.7'
- run: pip install .[tests]
- run: pytest
windows:
needs: linux
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: '3.7'
- run: pip install .[tests]
- run: pytest