From 7f5af607571608ead5ef192560ee14328ca189cb Mon Sep 17 00:00:00 2001 From: Paul Campbell Date: Tue, 17 Sep 2024 14:27:03 +0100 Subject: [PATCH] build: run integration test with same os as it was built --- .forgejo/workflows/push-next.yml | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/.forgejo/workflows/push-next.yml b/.forgejo/workflows/push-next.yml index 4e52cca..894505b 100644 --- a/.forgejo/workflows/push-next.yml +++ b/.forgejo/workflows/push-next.yml @@ -18,7 +18,7 @@ jobs: uses: actions/checkout@v4 - name: Format - uses: https://git.kemitix.net/kemitix/rust@v1.80.1 + uses: https://git.kemitix.net/kemitix/rust@v2.0.4 with: args: cargo fmt --all -- --check @@ -26,19 +26,21 @@ jobs: # uses: https://github.com/bnjbvr/cargo-machete@v0.6.2 - name: Clippy - uses: https://git.kemitix.net/kemitix/rust@v1.80.1 + uses: https://git.kemitix.net/kemitix/rust@v2.0.4 with: args: cargo clippy - name: Build - uses: https://git.kemitix.net/kemitix/rust@v1.80.1 + uses: https://git.kemitix.net/kemitix/rust@v2.0.4 with: args: cargo build - name: Test - uses: https://git.kemitix.net/kemitix/rust@v1.80.1 + uses: https://git.kemitix.net/kemitix/rust@v2.0.4 with: args: cargo test --no-fail-fast - name: Integration - run: ./test.sh + uses: https://git.kemitix.net/kemitix/rust@v2.0.4 + with: + args: ./test.sh