Skip to content

Add a basic CI workflow to build the package #1

Add a basic CI workflow to build the package

Add a basic CI workflow to build the package #1

Workflow file for this run

name: CI
on:
pull_request:
push:
branches: ["main"]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: '3.10'
- name: Install package
run: python -m pip install .