build: update forgejo action to rust 1.80.1
This commit is contained in:
parent
bf7486235f
commit
f645c4d15e
1 changed files with 8 additions and 8 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue