Skip to content

Commit

Permalink
Update workflows for nightly.
Browse files Browse the repository at this point in the history
  • Loading branch information
mmaker committed Sep 9, 2024
1 parent 36409c1 commit 77208c3
Showing 1 changed file with 15 additions and 4 deletions.
19 changes: 15 additions & 4 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,24 @@ env:
CARGO_TERM_COLOR: always

jobs:
build:

minimal-setup:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: Build
run: cargo build --all-features --verbose
run: cargo build --verbose
- name: Run tests
run: cargo test --all-features --verbose
run: cargo test --verbose


full-setup:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: Build (nightly)
run: cargo build --all-features --verbose
- name: Run tests (nightly)
run: cargo test --all-features --verbose

0 comments on commit 77208c3

Please sign in to comment.