Skip to content

Commit 9346c6a

Browse files
authored
ci: Add workflow rust.yml
1 parent bc5818f commit 9346c6a

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

.github/workflows/rust.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
pull_request:
6+
7+
env:
8+
CARGO_TERM_COLOR: always
9+
10+
jobs:
11+
test:
12+
runs-on: ubuntu-latest
13+
steps:
14+
- uses: actions/checkout@v6
15+
- name: Build
16+
run: cargo build
17+
- name: Test
18+
run: cargo test

0 commit comments

Comments
 (0)