Skip to content

Feature/add-windows-support #10

Feature/add-windows-support

Feature/add-windows-support #10

Workflow file for this run

name: Python package
on:
push:
branches:
- main
- "releases/**"
pull_request:
branches:
- main
- "releases/**"
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-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