Skip to content

v0.3.0

v0.3.0 #34

Workflow file for this run

name: Build
on:
release:
types: [published]
push:
branches:
- main
paths-ignore:
- README.md
- CHANGELOG.md
env:
PROJECT_NAME: typeid-python
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 9
submodules: false
- name: Use Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install Poetry
uses: snok/install-poetry@v1
- name: Install Dependencies
run: |
poetry install --with dev
- name: Run tests
run: |
make test
- name: Run linters
run: |
make check-linting