Skip to content

Commit

Permalink
add rust CI
Browse files Browse the repository at this point in the history
  • Loading branch information
aaronc committed Oct 11, 2024
1 parent c8c5198 commit ad25e82
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: "Test Suite"
on:
pull_request:
merge_group:
push:
branches:
- main
- release/**
- rust-core
permissions:
contents: read

jobs:
test:
name: cargo test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions-rust-lang/setup-rust-toolchain@v1
- run: cargo test --all-features --workspace
working-directory: rust

0 comments on commit ad25e82

Please sign in to comment.