Skip to content

Commit

Permalink
Add GitHub Actions build
Browse files Browse the repository at this point in the history
WIP
  • Loading branch information
tombruijn committed Jan 11, 2024
1 parent 2171910 commit 9c51900
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: Python package
on: [push]
jobs:
build:
runs-on: ubuntu-lateststeps:
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: "Run tests"
run: "hatch -v run test.py$(echo ${{ matrix.python-version }} | tr -d '.'):pytest"

0 comments on commit 9c51900

Please sign in to comment.