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
|
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
|
||||||
|
|
Loading…
Reference in a new issue