Skip to content

Migrate to pyproject.toml with hatchling build system #413

Migrate to pyproject.toml with hatchling build system

Migrate to pyproject.toml with hatchling build system #413

Workflow file for this run

name: Test Suite
on: [push, pull_request]
jobs:
unit-test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ "3.9", "3.10", "3.11" ]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Setup container
run: sudo ./ci/install.sh
- name: Install dependencies
run: pip install '.[dev]'
- name: Execute unit-tests
run: make test