Skip to content

Upgrade Python to 3.11 in Dockerfile and other python libs updated #82

Upgrade Python to 3.11 in Dockerfile and other python libs updated

Upgrade Python to 3.11 in Dockerfile and other python libs updated #82

Workflow file for this run

name: run tests
on: [pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ '3.8' ]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Set up poetry
uses: abatilo/actions-poetry@v2
- name: Install dependencies
run: |
poetry env use ${{ matrix.python-version }}
poetry install
- name: Test with pytest
run:
poetry run pytest