summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorBrooks J Rady <b.j.rady@gmail.com>2021-04-14 19:08:22 +0100
committerBrooks J Rady <b.j.rady@gmail.com>2021-04-14 19:08:22 +0100
commitaf702b67e69981c00cf022888164fbd7b278f7e5 (patch)
treee076817e404defb636255f0860f968c29613c137 /.github
parent2dd8d817bb931e988fb928c9ff31f3c2e5afd648 (diff)
feat(build): vastly simplify the build system
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/rust.yml6
1 files changed, 4 insertions, 2 deletions
diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml
index 532582fdc..2443c060f 100644
--- a/.github/workflows/rust.yml
+++ b/.github/workflows/rust.yml
@@ -20,8 +20,10 @@ jobs:
run: rustup target add wasm32-wasi
- name: Install cargo-make
run: cargo install --debug cargo-make
- - name: Build & Test
- run: cargo make
+ - name: Build
+ run: cargo make build
+ - name: Test
+ run: cargo make test
format:
name: Check Formatting