Skip to content

Commit

Permalink
workflows: Add CI workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
avdgrinten committed Oct 28, 2024
1 parent b1d7f68 commit 1ca8e7e
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: CI

on: [push, pull_request]

jobs:
test:
name: Test y4
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: '3.x'
- name: Install y4 from checkout
run: |
pip install .
- name: Run y4 pytests
run: |
pytest tests/

0 comments on commit 1ca8e7e

Please sign in to comment.