Skip to content

Commit 770dde6

Browse files
committed
add workflow
1 parent 263ee9e commit 770dde6

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

.github/workflows/rust-ci.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: Rust CI
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
8+
jobs:
9+
build:
10+
runs-on: ubuntu-latest
11+
12+
steps:
13+
- name: Set up Rust
14+
uses: actions/setup-rust@v1
15+
with:
16+
rust-version: stable
17+
18+
- name: Check out code
19+
uses: actions/checkout@v2
20+
21+
- name: Build
22+
run: cargo build --verbose

0 commit comments

Comments
 (0)