Skip to content
This repository has been archived by the owner on Nov 1, 2023. It is now read-only.

Add archive notice

Add archive notice #7

Workflow file for this run

name: Test pipeline
on:
push:
branches:
- main
pull_request:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.7', '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 dependencies
run: |
pip install poetry
poetry install --with test
- name: Run tests
run: |
source $(poetry env info -p)/bin/activate
pytest