Skip to content

Commit 6337a3b

Browse files
authored
chore: add rust build tools
1 parent 409d0fa commit 6337a3b

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

.github/workflows/rust.yml

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: Rust
2+
3+
on:
4+
push:
5+
branches: [ "rust" ]
6+
pull_request:
7+
branches: [ "rust" ]
8+
workflow_dispatch:
9+
10+
env:
11+
CARGO_TERM_COLOR: always
12+
13+
jobs:
14+
build:
15+
16+
runs-on: ubuntu-latest
17+
18+
steps:
19+
- uses: actions/checkout@v4
20+
- name: Build
21+
run: cargo build --verbose
22+
- name: Run tests
23+
run: cargo test --verbose

0 commit comments

Comments
 (0)