Skip to content

Commit b613fb7

Browse files
committed
(rust): Add Action to test Rust Lambda
1 parent 46fafd9 commit b613fb7

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

.github/workflows/test-rust.yaml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: Test Rust Lambda
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
pull_request:
8+
9+
jobs:
10+
test:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- uses: actions/checkout@v4
14+
- name: Run Rust tests
15+
run: |
16+
cd lambda/rust
17+
cargo test

0 commit comments

Comments
 (0)