Skip to content

Updated project name in LICENCE #46

Updated project name in LICENCE

Updated project name in LICENCE #46

Workflow file for this run

name: tests
on:
push:
branches:
- master
jobs:
test:
strategy:
fail-fast: false
matrix:
python-version: ["3.11"]
poetry-version: ["1.8.2"]
os: [ubuntu-22.04]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Run image
uses: abatilo/actions-poetry@v2
with:
poetry-version: ${{ matrix.poetry-version }}
- name: install
run: poetry install --with tests
- name: test
run: poetry run coverage