Skip to content

Refactor astroquery.heasarc to use VO protocols #2378

Refactor astroquery.heasarc to use VO protocols

Refactor astroquery.heasarc to use VO protocols #2378

Workflow file for this run

# This test job is separated out into its own workflow to be able to obtain a separate badge for it
name: CI-devtest
on:
push:
branches:
- main
tags:
- '*'
pull_request:
branches:
- main
schedule:
# run every Monday at 5am UTC
- cron: '0 5 * * 1'
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: read
jobs:
tests:
name: ${{ matrix.name }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: true
matrix:
include:
- name: dev dependencies with all dependencies with coverage
os: ubuntu-latest
python: '3.12'
toxenv: py312-test-alldeps-devdeps-cov
toxargs: -v
- name: Python 3.13
os: ubuntu-latest
python: '3.13-dev'
toxenv: py313-test
toxargs: -v
steps:
- name: Checkout code
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
with:
fetch-depth: 0
- name: Set up Python
uses: actions/setup-python@f677139bbe7f9c59b41e40162b753c062f5d49a3 # v5.2.0
with:
python-version: ${{ matrix.python }}
- name: Install Python dependencies
run: python -m pip install --upgrade tox
- name: Run tests
run: tox ${{ matrix.toxargs }} -e ${{ matrix.toxenv }} -- ${{ matrix.toxposargs }}
- name: Upload coverage to codecov
if: contains(matrix.toxenv,'-cov')
uses: codecov/codecov-action@b9fd7d16f6d7d1b5d2bec1a2887e65ceed900238 # v4.6.0
with:
file: ./coverage.xml