b61731c7
—
Gal Schlezinger 6 years ago
Add CI with GitHub actions
- .github/workflows/rust.yml +15 -0
.github/workflows/rust.yml
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
name: Rust
|
|
2
|
+
|
|
3
|
+
on: [push]
|
|
4
|
+
|
|
5
|
+
jobs:
|
|
6
|
+
build:
|
|
7
|
+
|
|
8
|
+
runs-on: ubuntu-latest
|
|
9
|
+
|
|
10
|
+
steps:
|
|
11
|
+
- uses: actions/checkout@v1
|
|
12
|
+
- name: Build
|
|
13
|
+
run: cargo build --verbose
|
|
14
|
+
- name: Run tests
|
|
15
|
+
run: cargo test --verbose
|