Skip to content

removed tests that don't work on github actions because of changing d… #118

removed tests that don't work on github actions because of changing d…

removed tests that don't work on github actions because of changing d… #118

Workflow file for this run

name: CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
ci:
strategy:
matrix:
python-version: ["3.10"]
poetry-version: ["1.1.14"]
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
# Note - can swap order of setup-python and install poetry if there
# is difficulty with python version, though this in turn will require
# you to figure out an alternative method of cacheing.
- name: Install poetry
uses: abatilo/actions-poetry@v2.0.0
with:
poetry-version: ${{ matrix.poetry-version }}
- 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 pytest