build: update forgejo action to rust 1.80.1
All checks were successful
Rust / build (push) Successful in 21s
ci/woodpecker/push/woodpecker Pipeline was successful
ci/woodpecker/cron/woodpecker Pipeline was successful

This commit is contained in:
Paul Campbell 2024-08-11 09:04:47 +01:00
parent bf7486235f
commit f645c4d15e

View file

@ -18,27 +18,27 @@ jobs:
uses: actions/checkout@v4 uses: actions/checkout@v4
- name: Format - name: Format
uses: https://git.kemitix.net/kemitix/rust@v1.80.0 uses: https://git.kemitix.net/kemitix/rust@v1.80.1
with: with:
args: fmt --all -- --check args: cargo fmt --all -- --check
# - name: Machete # - name: Machete
# uses: https://github.com/bnjbvr/cargo-machete@v0.6.2 # uses: https://github.com/bnjbvr/cargo-machete@v0.6.2
- name: Clippy - name: Clippy
uses: https://git.kemitix.net/kemitix/rust@v1.80.0 uses: https://git.kemitix.net/kemitix/rust@v1.80.1
with: with:
args: clippy args: cargo clippy
- name: Build - name: Build
uses: https://git.kemitix.net/kemitix/rust@v1.80.0 uses: https://git.kemitix.net/kemitix/rust@v1.80.1
with: with:
args: build args: cargo build
- name: Test - name: Test
uses: https://git.kemitix.net/kemitix/rust@v1.80.0 uses: https://git.kemitix.net/kemitix/rust@v1.80.1
with: with:
args: test --no-fail-fast args: cargo test --no-fail-fast
- name: Integration - name: Integration
run: ./test.sh run: ./test.sh