Skip to content

fix: build failing on python 3.8 #5

fix: build failing on python 3.8

fix: build failing on python 3.8 #5

Workflow file for this run

name: Build & Test package
on:
push:
branches:
- '*'
tags:
- v*
pull_request:
branches:
- master
jobs:
build_and_test:
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11"]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Python
uses: actions/setup-python@v4
# see details (matrix, python-version, python-version-file, etc.)
# https://github.com/actions/setup-python
- name: Install poetry
uses: abatilo/actions-poetry@v2
- name: Cache the Virtual Env
uses: actions/cache@v3
with:
path: ./.venv
key: venv-${{ hashFiles('poetry.lock') }}
- name: Install the project dependencies
run: poetry install --with=test
- name: Run the automated tests (for example)
run: poetry run python tests/tests.py -v