Skip to content

Update versions for publish workflow #125

Update versions for publish workflow

Update versions for publish workflow #125

Workflow file for this run

name: Unit Tests

Check failure on line 1 in .github/workflows/test.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/test.yml

Invalid workflow file

(Line: 14, Col: 7): Unexpected value 'include'
on:
pull_request:
types: [opened, reopened, synchronize]
jobs:
test_x86_64:
name: "Build ${{ matrix.pyver }} on ${{ matrix.os }}"
strategy:
matrix:
pyver: ["3.9", "3.11", "3.13"]
os: [ubuntu-22.04, windows-latest]
include:
- pyver: "3.10"
os: ubuntu-24.04-arm
- pyver: "3.12"
os: ubuntu-24.04-arm
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v6
- name: Setting up Python
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.pyver }}
- name: Install dependencies
run: |
python -m pip install --disable-pip-version-check --upgrade pip
pip install -U -r requirements.txt -r requirements-dev.txt
#Install locally to support tests
pip install -e .
- name: Test with pytest
run: pytest