Skip to content

Linux

Linux #430

Workflow file for this run

name: Linux
on:
push:
branches:
- main
pull_request:
schedule:
- cron: "0 0 * * 1"
jobs:
ci:
strategy:
fail-fast: false
matrix:
python-version: [3.12, 3.13, 3.14]
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- uses: excitedleigh/setup-nox@v2.1.0
- name: run tests
run: |
nox -s test-data-download-source
nox -s test-data-download-generated-ci
nox -s coverage --verbose
- name: Upload coverage reports to Codecov with GitHub Action
uses: codecov/codecov-action@v5
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}