ci: Bug fix: need to check out code and install toolchain in new jobs

This commit is contained in:
Chris Hennick 2024-05-03 11:41:04 -07:00
parent 8e0f4ace34
commit f814a6dbc3
No known key found for this signature in database
GPG key ID: DA47AABA4961C509

View file

@ -63,7 +63,7 @@ jobs:
profile: minimal
toolchain: nightly
override: true
components: rustfmt, clippy
components: rustfmt
- name: fmt
run: cargo fmt --all -- --check
@ -74,16 +74,23 @@ jobs:
feature_flag: ["--all-features", "--no-default-features", ""]
runs-on: ubuntu-latest
steps:
- name: clippy
uses: actions-rs/cargo@v1
with:
command: clippy
args: --all-targets ${{ matrix.feature_flag }} -- -D warnings
- name: docs
uses: actions-rs/cargo@v1
with:
command: doc
args: --no-deps --all-targets ${{ matrix.feature_flag }} -- -D warnings
- uses: actions/checkout@v4
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: nightly
override: true
components: clippy
- name: clippy
uses: actions-rs/cargo@v1
with:
command: clippy
args: --all-targets ${{ matrix.feature_flag }} -- -D warnings
- name: docs
uses: actions-rs/cargo@v1
with:
command: doc
args: --no-deps --all-targets ${{ matrix.feature_flag }} -- -D warnings
fuzz_read:
runs-on: ubuntu-latest