Skip to content

Add a py.typed file to ensure code is type-checked #3

Add a py.typed file to ensure code is type-checked

Add a py.typed file to ensure code is type-checked #3

Workflow file for this run

name: Python package
on: [push]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.12"
- name: Setup Poetry
uses: Gr1N/setup-poetry@v8
- name: Install dependencies
run: make
- name: CI
run: make ci