Skip to content

Updated action with supported Python versions #1

Updated action with supported Python versions

Updated action with supported Python versions #1

Workflow file for this run

name: Main
on:
push:
branches:
- dependency_updates
pull_request:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ "3.9", "3.10", "3.11" ]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pip install .[test]
git clone --depth 1 https://github.com/pyvec/pyvo-data pyvocz/pyvo-data
- name: Run tests
run: |
python -m pytest -vv test_pyvocz