fix: container version to 3.11 #81
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: pytest | |
on: | |
push: | |
branches: | |
- develop | |
- 'feature/**' | |
jobs: | |
pytest: | |
name: Run tests with pytest | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: ['3.11', '3.12'] | |
steps: | |
- name: checkout | |
uses: actions/checkout@v2 | |
- name: install python ${{ matrix.python-version }} | |
uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: setup poetry | |
run: | | |
pip install poetry | |
poetry install --no-interaction | |
- name: run tests | |
run: poetry run pytest |