Skip to content

Commit c089d03

Browse files
author
Marek Suchánek
committed
Configure the Github CI
1 parent 9a53edf commit c089d03

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

.github/workflows/rust-tests.yml

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: Rust tests
2+
3+
on: [ push ]
4+
5+
env:
6+
CARGO_TERM_COLOR: always
7+
8+
jobs:
9+
test:
10+
11+
runs-on: ubuntu-latest
12+
13+
steps:
14+
- uses: actions/checkout@v3
15+
- name: Check syntax
16+
run: cargo check
17+
- name: Run tests
18+
run: cargo test
19+
- name: Check lints
20+
run: cargo clippy

0 commit comments

Comments
 (0)