Skip to content

CI Update: Enable python 3.14 beta, 3.13 is no longer dev #9

CI Update: Enable python 3.14 beta, 3.13 is no longer dev

CI Update: Enable python 3.14 beta, 3.13 is no longer dev #9

Workflow file for this run

---
name: runci
"on":
- pull_request
- push
jobs:
build:
strategy:
matrix:
python-version: [3.9, 3.x]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Set up Python ${{ matrix.python-version }} ${{ matrix.os }}
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: Install pytest
run: |
pip install pytest
- name: Run tests
run: |
pytest -v