Skip to content

Update python version and poetry installation path #46

Update python version and poetry installation path

Update python version and poetry installation path #46

Workflow file for this run

name: tests
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install poetry
run: |
python -m pip install poetry
- name: Set up cache
uses: actions/cache@v2
with:
path: .venv
key: venv-${{ matrix.python-version }}-${{ hashFiles('poetry.lock') }}
- name: Install dependencies
run: |
python -m poetry config virtualenvs.in-project true
python -m poetry install
- name: Run tests
run: |
python -m poetry run pytest
# Uncomment this lines if you wish to upload coverage to codecov:
# https://codecov.io/
# - name: Upload coverage to Codecov
# uses: codecov/codecov-action@v1
# with:
# file: ./coverage.xml