From f645c4d15ef67a26d09f4c3199709c676cc6f7a8 Mon Sep 17 00:00:00 2001 From: Paul Campbell Date: Sun, 11 Aug 2024 09:04:47 +0100 Subject: [PATCH] build: update forgejo action to rust 1.80.1 --- .forgejo/workflows/push-next.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.forgejo/workflows/push-next.yml b/.forgejo/workflows/push-next.yml index 6ba46cf..4e52cca 100644 --- a/.forgejo/workflows/push-next.yml +++ b/.forgejo/workflows/push-next.yml @@ -18,27 +18,27 @@ jobs: uses: actions/checkout@v4 - name: Format - uses: https://git.kemitix.net/kemitix/rust@v1.80.0 + uses: https://git.kemitix.net/kemitix/rust@v1.80.1 with: - args: fmt --all -- --check + args: cargo fmt --all -- --check # - name: Machete # uses: https://github.com/bnjbvr/cargo-machete@v0.6.2 - name: Clippy - uses: https://git.kemitix.net/kemitix/rust@v1.80.0 + uses: https://git.kemitix.net/kemitix/rust@v1.80.1 with: - args: clippy + args: cargo clippy - name: Build - uses: https://git.kemitix.net/kemitix/rust@v1.80.0 + uses: https://git.kemitix.net/kemitix/rust@v1.80.1 with: - args: build + args: cargo build - name: Test - uses: https://git.kemitix.net/kemitix/rust@v1.80.0 + uses: https://git.kemitix.net/kemitix/rust@v1.80.1 with: - args: test --no-fail-fast + args: cargo test --no-fail-fast - name: Integration run: ./test.sh