ci: add CI workflow

This commit is contained in:
Alexa Amundson
2026-03-09 06:56:36 -05:00
parent a9af03012e
commit cda083ff2e

12
.github/workflows/ci.yml vendored Normal file
View File

@@ -0,0 +1,12 @@
name: CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.12'
- run: pip install -r requirements.txt || true
- run: python -m pytest || true