Skip to content

Bump to v1.4.0

Bump to v1.4.0 #115

Workflow file for this run

name: testing
on:
push:
branches:
- master
- stable
pull_request:
branches:
- master
- stable
jobs:
test:
runs-on: ubuntu-22.04
strategy:
fail-fast: false
matrix:
python-version: ['3.9', '3.10', '3.11', '3.12']
steps:
- uses: actions/checkout@v3
- name: Install poetry
run: |
pipx install poetry
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: 'poetry'
- name: Install package
run: |
poetry install
- name: Run tests
run: |
poetry run -- make test