Skip to content

fix GHA

fix GHA #6

Workflow file for this run

name: Python integration tests
on:
push:
pull_request:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
# You can test your matrix by printing the current Python version
- name: Display Python version
run: python -c "import sys; print(sys.version)"
- name: Upgrade pip
run: pip3 install --upgrade pip
- name: Install dependencies
run: pip3 install -r requirements.txt
- name: Install test dependencies
run: pip3 install -r test-requirements.txt
- name: Integration tests
run: pytest