Merge pull request #640 from stvoutsin/job_delete_optional #656
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
# Developer version testing is in separate workflow | |
name: CI | |
on: | |
push: | |
branches: | |
- main | |
- 'v*' | |
tags: | |
- '*' | |
pull_request: | |
schedule: | |
- cron: "0 3 * * 6" | |
workflow_dispatch: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
tests: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- name: py39 oldest dependencies, Linux | |
python-version: '3.9' | |
tox_env: py39-test-oldestdeps-alldeps | |
- name: py310 mandatory dependencies only, Linux | |
python-version: '3.10' | |
tox_env: py310-test | |
- name: py311 with online tests, Linux | |
python-version: '3.11' | |
tox_env: py311-test-alldeps-online | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
with: | |
fetch-depth: 0 | |
- name: Set up Python | |
uses: actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b # v5.3.0 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install tox | |
run: python -m pip install --upgrade tox | |
- name: Install library dependencies and run Tests | |
run: tox -e ${{ matrix.tox_env }} | |
mac_windows: | |
runs-on: ${{ matrix.os }} | |
name: ${{ matrix.os }} py310 | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [macos-latest, windows-latest] | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
with: | |
fetch-depth: 0 | |
- name: Set up Python | |
uses: actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b # v5.3.0 | |
with: | |
python-version: '3.12' | |
- name: Install tox | |
run: python -m pip install --upgrade tox | |
- name: Python 3.12 with latest astropy | |
run: tox -e py312-test-alldeps | |
stylecheck: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
steps: | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- name: Set up Python 3.12 | |
uses: actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b # v5.3.0 | |
with: | |
python-version: '3.12' | |
- name: Install tox | |
run: python -m pip install --upgrade tox | |
- name: Check codestyle | |
run: tox -e codestyle | |
linkcheck: | |
if: github.event_name == 'schedule' && github.repository == 'astropy/pyvo' | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
steps: | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- name: Set up Python 3.10 | |
uses: actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b # v5.3.0 | |
with: | |
python-version: '3.10' | |
- name: Install tox | |
run: python -m pip install --upgrade tox | |
- name: Check docs links | |
run: tox -e linkcheck |