Skip to content

Commit

Permalink
ci
Browse files Browse the repository at this point in the history
  • Loading branch information
lbeurerkellner committed Jun 12, 2024
1 parent 11b0bd0 commit b5a99d2
Showing 1 changed file with 12 additions and 6 deletions.
18 changes: 12 additions & 6 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Run Tests (all extras)
name: Run Tests

on:
push:
Expand All @@ -8,17 +8,23 @@ permissions:
contents: read

jobs:
build:

test-all-extras:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- name: Install the latest version of rye
uses: eifinger/setup-rye@v3
with:
enable-cache: true
- name: Install dependencies
run: rye sync
- name: Run tests
run: rye test
test-no-extras:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install the latest version of rye
uses: eifinger/setup-rye@v3
- name: Install dependencies
run: rye sync --no-dev
- name: Run tests
run: rye test

0 comments on commit b5a99d2

Please sign in to comment.