Skip to content

Commit 2306c70

Browse files
committed
tests(CI): add config file for GitHub Actions
1 parent 3e4a12a commit 2306c70

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

.github/workflows/rust.yml

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: Rust
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
build:
7+
8+
runs-on: ubuntu-latest
9+
10+
steps:
11+
- uses: actions/checkout@v1
12+
- name: Run formatter
13+
run: cargo clippy --all --verbose --all-features -- -D warnings
14+
- name: Run Clippy
15+
run: cargo clippy --verbose
16+
- name: Run tests
17+
run: cargo test --all --verbose

0 commit comments

Comments
 (0)