Skip to content

Update gh-deploy.yml #189

Update gh-deploy.yml

Update gh-deploy.yml #189

Workflow file for this run

name: pytest
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
steps:
- name: Checkout 🛎️
uses: actions/checkout@v5
- name: Set up Python ${{ matrix.python-version }} 🐍
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: Test with pytest 🧪
run: |
python -m pip install -U pip
pip install -r requirements-test.txt
pip install -e .
pytest