Skip to content

fix:Upgrade Python version from 3.8 to 3.11 #370

fix:Upgrade Python version from 3.8 to 3.11

fix:Upgrade Python version from 3.8 to 3.11 #370

Workflow file for this run

name: Build & test
on:
push:
pull_request:
jobs:
run_test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
name: Run unittests
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
cache-dependency-path: Pipfile.lock
- run: pip install . && pip install pipenv && pipenv install --system -d
- run: pytest