Skip to content

Commit

Permalink
Add a basic CI workflow to build the package
Browse files Browse the repository at this point in the history
.github/workflows/ci.yaml implements a GitHub Actions workflow that
builds the package on Ubuntu, macOS, and Windows.
  • Loading branch information
wkearn committed May 23, 2024
1 parent 9caae0f commit 62855d4
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
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 .

0 comments on commit 62855d4

Please sign in to comment.