summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorDoron Tsur <qballer@gmail.com>2020-10-27 22:20:38 +0200
committerGitHub <noreply@github.com>2020-10-27 22:20:38 +0200
commitc95f1f81fc0777faeb6978008916b315377f54a8 (patch)
treee2bcc8e504c9470681b22d72c43f1adaa6bd6aaa /.github
parent4574a4273a0c6e1a0e10df48ab99bc827d281802 (diff)
Create rust.yml
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/rust.yml22
1 files changed, 22 insertions, 0 deletions
diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml
new file mode 100644
index 000000000..7ae98f3b1
--- /dev/null
+++ b/.github/workflows/rust.yml
@@ -0,0 +1,22 @@
+name: Rust
+
+on:
+ push:
+ branches: [ main ]
+ pull_request:
+ branches: [ main ]
+
+env:
+ CARGO_TERM_COLOR: always
+
+jobs:
+ build:
+
+ runs-on: ubuntu-latest
+
+ steps:
+ - uses: actions/checkout@v2
+ - name: Build
+ run: cargo build --verbose
+ - name: Run tests
+ run: cargo test --verbose