summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorBrooks J Rady <b.j.rady@gmail.com>2021-04-13 16:52:27 +0100
committerBrooks J Rady <b.j.rady@gmail.com>2021-04-13 16:52:27 +0100
commit23e0b8adf1aae1bb1b29b6bde346a073a870e307 (patch)
tree2356f84e5ea7e8a37460fa9184e57b88cb7c3851 /.github
parentdf88862eb3c4265c28af1add44509bb9a0fb3781 (diff)
fix(ci): unbreak things
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/rust.yml14
1 files changed, 5 insertions, 9 deletions
diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml
index 29bda75ea..532582fdc 100644
--- a/.github/workflows/rust.yml
+++ b/.github/workflows/rust.yml
@@ -19,7 +19,7 @@ jobs:
- name: Add WASM target
run: rustup target add wasm32-wasi
- name: Install cargo-make
- run: cargo install --force cargo-make
+ run: cargo install --debug cargo-make
- name: Build & Test
run: cargo make
@@ -29,22 +29,18 @@ jobs:
steps:
- uses: actions/checkout@v2
- - name: Add WASM target
- run: rustup target add wasm32-wasi
- name: Install cargo-make
- run: cargo install --force cargo-make
+ run: cargo install --debug cargo-make
- name: Check Format
run: cargo make check-format
clippy:
- name: Check For Clippy Lints
+ name: Check Clippy Lints
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- - name: Add WASM target
- run: rustup target add wasm32-wasi
- name: Install cargo-make
- run: cargo install --force cargo-make
- - name: Check Format
+ run: cargo install --debug cargo-make
+ - name: Check Lints
run: cargo make clippy -D clippy::all