diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 232de9d2..ade1637c 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -33,8 +33,6 @@ jobs: - name: Add required index.html run: | touch ./static/index.html - - uses: actions-rs/cargo@v1 - with: - command: clippy - args: -- -D warnings + - name: Run cargo clippy + run: cargo clippy -- -D warnings diff --git a/.github/workflows/pr-build.yml b/.github/workflows/pr-build.yml index e1a7a509..34419528 100644 --- a/.github/workflows/pr-build.yml +++ b/.github/workflows/pr-build.yml @@ -25,7 +25,6 @@ jobs: - name: Add required index.html run: | touch ./static/index.html - - uses: actions-rs/cargo@v1 - with: - command: build + - name: Run cargo build + run: cargo build diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index d5fc1485..82e8925d 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -33,7 +33,6 @@ jobs: - name: Add required index.html run: | touch ./static/index.html - - uses: actions-rs/cargo@v1 - with: - command: test + - name: Run cargo test + run: cargo test