Skip to content

v2024.4.2 fixes install bug introduced in v2024.4.1 #399

v2024.4.2 fixes install bug introduced in v2024.4.1

v2024.4.2 fixes install bug introduced in v2024.4.1 #399

Workflow file for this run

name: CI
on:
push:
pull_request:
schedule:
- cron: "0 0 * * 0"
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11", "3.x"]
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: |
python -m pip install --upgrade pip
pip install -r requirements.test.txt
- name: Test with pytest
run: |
pytest