Skip to content

Verification

Verification #1

Workflow file for this run

name: Verification
on: workflow_dispatch
jobs:
test-full:
name: Run Verification Tests
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest]
python-version: ["3.11"]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Check Python version
run: python --version
- name: Install dependencies
run: python -m pip install ".[test,verify]"
- name: Run unit tests
run: python -m pytest scripts/astropy_verification.py