Skip to content

Fixing issues related with migration to Python 3.12 (especially bc-in… #27

Fixing issues related with migration to Python 3.12 (especially bc-in…

Fixing issues related with migration to Python 3.12 (especially bc-in… #27

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-22.04
strategy:
matrix:
python-version: [3.9, 3.11, 3.12]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pytest
pip install -r requirements.txt
- name: Test with pytest
run: pytest