Skip to content

Fix supported file types URL #107

Fix supported file types URL

Fix supported file types URL #107

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']
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