Skip to content

Commit

Permalink
Merge pull request #47 from metaborg/examples-test
Browse files Browse the repository at this point in the history
Enable Examples test in CI
  • Loading branch information
jdonszelmann authored May 24, 2024
2 parents e498f11 + fe89878 commit 9f53126
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,12 @@ jobs:
command: test
args: --all-features

- name: Run cargo examples tests
uses: actions-rs/cargo@v1
with:
command: test
args: --all-features --examples

test-beta:
name: Test Beta
runs-on: ubuntu-latest
Expand All @@ -76,6 +82,12 @@ jobs:
command: test
args: --all-features

- name: Run cargo examples tests
uses: actions-rs/cargo@v1
with:
command: test
args: --all-features --examples

test-stable:
name: Test Stable
runs-on: ubuntu-latest
Expand All @@ -92,3 +104,9 @@ jobs:
with:
command: test
args: --all-features

- name: Run cargo examples tests
uses: actions-rs/cargo@v1
with:
command: test
args: --all-features --examples

0 comments on commit 9f53126

Please sign in to comment.