Skip to content

Commit

Permalink
ci: add test job
Browse files Browse the repository at this point in the history
  • Loading branch information
koehlma committed Jul 29, 2024
1 parent c719e1a commit 9f1e69d
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion .github/workflows/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
name: Check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Install Rye
uses: eifinger/setup-rye@v4
- name: Install Momba
Expand All @@ -23,6 +23,20 @@ jobs:
run: |
rye run check-types
test:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Rye
uses: eifinger/setup-rye@v4
- name: Install Momba
run: |
rye sync --all-features
- name: Run Tests
run: |
rye run run-tests
# test:
# name: Tests
# runs-on: ubuntu-latest
Expand Down

0 comments on commit 9f1e69d

Please sign in to comment.