Update for 2024.0 release #418
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test | |
on: [push, pull_request] | |
jobs: | |
test: | |
# We want to run on external PRs, but not on our own internal PRs as they'll | |
# be run by the push to the branch. Without this if check, checks are | |
# duplicated since internal PRs match both the push and pull_request events. | |
if: | |
github.event_name == 'push' || | |
github.event.pull_request.head.repo.full_name != github.repository | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
python-version: ["3.9", "3.10", "3.11", "3.12"] | |
runs-on: ${{ matrix.os }} | |
defaults: | |
run: | |
shell: bash -l {0} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: conda-incubator/setup-miniconda@v3 | |
with: | |
python-version: "${{ matrix.python-version }}" | |
miniforge-variant: Mambaforge | |
miniforge-version: latest | |
- name: Install nox | |
run: pip install nox | |
- name: Test | |
run: nox -s test | |
test-notebooks: | |
if: | |
github.event_name == 'push' || | |
github.event.pull_request.head.repo.full_name != github.repository | |
name: Test the notebooks | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: conda-incubator/setup-miniconda@v3 | |
with: | |
python-version: "3.11" | |
miniforge-variant: Mambaforge | |
miniforge-version: latest | |
- name: Install nox | |
run: pip install nox | |
- name: Test | |
env: | |
MPLBACKEND: "Agg" | |
OPENTOPOGRAPHY_API_KEY: ${{ secrets.OPENTOPOGRAPHY_API_KEY }} | |
run: nox -s test-notebooks --python "3.11" |