mirror of
https://github.com/edera-dev/krata.git
synced 2025-08-03 13:11:31 +00:00
workflows: fix dependencies
This commit is contained in:
4
.github/workflows/check.yml
vendored
4
.github/workflows/check.yml
vendored
@ -7,6 +7,7 @@ jobs:
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- uses: dtolnay/rust-toolchain@stable
|
||||
- run: ./scripts/ci/install-deps.sh
|
||||
- run: ./scripts/cargo.sh build
|
||||
test:
|
||||
name: cargo test
|
||||
@ -14,6 +15,7 @@ jobs:
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- uses: dtolnay/rust-toolchain@stable
|
||||
- run: ./scripts/ci/install-deps.sh
|
||||
- run: ./scripts/cargo.sh test
|
||||
clippy:
|
||||
name: cargo clippy
|
||||
@ -23,6 +25,7 @@ jobs:
|
||||
- uses: dtolnay/rust-toolchain@stable
|
||||
with:
|
||||
components: clippy
|
||||
- run: ./scripts/ci/install-deps.sh
|
||||
- run: ./scripts/cargo.sh clippy
|
||||
fmt:
|
||||
name: cargo fmt
|
||||
@ -32,4 +35,5 @@ jobs:
|
||||
- uses: dtolnay/rust-toolchain@stable
|
||||
with:
|
||||
components: rustfmt
|
||||
- run: ./scripts/ci/install-deps.sh
|
||||
- run: ./scripts/cargo.sh fmt --all -- --check
|
||||
|
Reference in New Issue
Block a user