Skip to content

Merge pull request #263 from Leshaka/fix/incorrect_api_version_param #872

Merge pull request #263 from Leshaka/fix/incorrect_api_version_param

Merge pull request #263 from Leshaka/fix/incorrect_api_version_param #872

Workflow file for this run

name: Tests
permissions:
contents: read
on:
pull_request: {}
push:
branches: ["master"]
merge_group: {}
jobs:
pytest:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10"]
name: Pytest (${{ matrix.python-version }})
steps:
- uses: actions/checkout@v1
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install poetry
run: pip install poetry
- name: Install dependencies
run: poetry install
- name: Run tests
run: poetry run task tests