JSON Parser for Datalinks #966
Workflow file for this run
This file contains hidden or 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 | |
| name: linux | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| include: | |
| - python-version: '3.9' | |
| tox_env: py39-test-oldestdeps-alldeps | |
| - python-version: '3.10' | |
| tox_env: py310-test | |
| - python-version: '3.11' | |
| tox_env: py311-test-alldeps | |
| - python-version: '3.13' | |
| tox_env: py313-test-alldeps | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0 | |
| with: | |
| fetch-depth: 0 | |
| - name: Set up Python | |
| uses: actions/setup-python@83679a892e2d95755f2dac6acb0bfd1e9ac5d548 # v6.1.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 }} (3.12 py312-test-alldeps) | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: [macos-latest, windows-latest] | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0 | |
| with: | |
| fetch-depth: 0 | |
| - name: Set up Python | |
| uses: actions/setup-python@83679a892e2d95755f2dac6acb0bfd1e9ac5d548 # v6.1.0 | |
| with: | |
| python-version: '3.12' | |
| - name: Install tox | |
| run: python -m pip install --upgrade tox | |
| - name: Python 3.12 with latest dependencies | |
| run: tox -e py312-test-alldeps | |
| stylecheck: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| steps: | |
| - uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0 | |
| - name: Set up Python 3.12 | |
| uses: actions/setup-python@83679a892e2d95755f2dac6acb0bfd1e9ac5d548 # v6.1.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@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0 | |
| - name: Set up Python 3.10 | |
| uses: actions/setup-python@83679a892e2d95755f2dac6acb0bfd1e9ac5d548 # v6.1.0 | |
| with: | |
| python-version: '3.10' | |
| - name: Install tox | |
| run: python -m pip install --upgrade tox | |
| - name: Check docs links | |
| run: tox -e linkcheck |