summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorSebastian Thiel <sebastian.thiel@icloud.com>2020-03-26 07:03:02 +0800
committerGitHub <noreply@github.com>2020-03-26 07:03:02 +0800
commit64d95247edbd69bb6bf5dd976d2b43364535c107 (patch)
tree785be4c0c800789f3682d6ef305244beae211d36 /.github
parent7c8e3875018fc61b86588212d3812a81546b664e (diff)
Create rust.yml
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/rust.yml17
1 files changed, 17 insertions, 0 deletions
diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml
new file mode 100644
index 0000000..3adc053
--- /dev/null
+++ b/.github/workflows/rust.yml
@@ -0,0 +1,17 @@
+name: Rust
+
+on:
+ push:
+ branches: [ master ]
+ pull_request:
+ branches: [ master ]
+
+jobs:
+ build-and-test:
+
+ runs-on: ubuntu-latest
+
+ steps:
+ - uses: actions/checkout@v2
+ - name: Run tests
+ run: make tests