Skip to content

Commit e4a171c

Browse files
authored
Create rust.yml
1 parent 6d26c05 commit e4a171c

1 file changed

Lines changed: 18 additions & 0 deletions

File tree

.github/workflows/rust.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Rust
2+
3+
on:
4+
pull_request:
5+
branches: [ "master", "dev_unstable", "dev" ]
6+
7+
env:
8+
CARGO_TERM_COLOR: always
9+
10+
jobs:
11+
build:
12+
13+
runs-on: ubuntu-latest
14+
15+
steps:
16+
- uses: actions/checkout@v4
17+
- name: Build
18+
run: cargo build --verbose

0 commit comments

Comments
 (0)