Skip to content

release 0.1.0

release 0.1.0 #6

Workflow file for this run

name: build
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 30
strategy:
matrix:
# See https://github.com/actions/python-versions/releases for available versions
python-version: [ "3.8", "3.9", "3.10", "3.11", "3.12.0" ]
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install Poetry
run: |
pipx install poetry
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: 'poetry'
- name: Install dependencies
run: |
poetry install
- name: Lint with Mypy
run: |
poetry run mypy mmc
- name: Run Tests
run: |
poetry run pytest -v
- name: Test build
run: |
poetry build