Fully qualify actions repos
Some checks failed
build / check (push) Successful in 7m22s
clippy / clippy (push) Successful in 7m14s
codespell / codespell (push) Successful in 4m25s
rustfmt / Rustfmt (push) Failing after 4m11s

This commit is contained in:
Evilham 2024-02-28 14:49:32 +01:00
parent bf94ecdd4a
commit 0347379284
Signed by: evilham
GPG key ID: AE3EE30D970886BF
4 changed files with 6 additions and 6 deletions

View file

@ -11,11 +11,11 @@ jobs:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
- uses: https://github.com/actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- uses: actions-rs/cargo@v1
- uses: https://github.com/actions-rs/cargo@v1
with:
command: check

View file

@ -11,13 +11,13 @@ jobs:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
- uses: https://github.com/actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- run: rustup component add clippy
- uses: actions-rs/cargo@v1
- uses: https://github.com/actions-rs/cargo@v1
with:
command: clippy
args: -- -D warnings

View file

@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- uses: codespell-project/actions-codespell@master
- uses: https://github.com/codespell-project/actions-codespell@master
with:
check_filenames: true
ignore_words_list: "crate,ser,inout"

View file

@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
- uses: https://github.com/actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable