Skip to content

Bump version: 2.1.0 → 2.1.1 #37

Bump version: 2.1.0 → 2.1.1

Bump version: 2.1.0 → 2.1.1 #37

Workflow file for this run

name: Tests
on: [push]
jobs:
build:
name: Running tests.
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: [3.8, 3.9, "3.10"]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install Poetry
uses: snok/install-poetry@v1
- name: Installing python dependencies
run: |
poetry install --no-interaction --all-extras
- name: Running tests
run: |
poetry run pytest