about summary refs log tree commit diff
diff options
context:
space:
mode:
authorEmile <git@emile.space>2023-04-25 18:50:50 +0200
committerEmile <git@emile.space>2023-04-25 18:50:50 +0200
commit23bac78a03991f398ca9b4bb4cf1e66643cba9f3 (patch)
treed867d0fe953ff30dc5a2a96e0ba1ce4932b8318d
parentbb9f0e2471aa932eef03620fa45488446dc7bbf3 (diff)
parentf62a447a4f0e0b073d273d032616637d2178af7e (diff)
Merge branch 'main' of https://github.com/HanEmile/vokobe
-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 0000000..31000a2
--- /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@v3
+    - name: Build
+      run: cargo build --verbose
+    - name: Run tests
+      run: cargo test --verbose