Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
48 changes: 24 additions & 24 deletions .github/workflows/reusable-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -168,30 +168,30 @@ jobs:
delete-branch: true
# ---------- end README handling ----------

- name: Check formatting (nightly rustfmt)
uses: ./.github/actions/cargo-fmt
with:
toolchain: nightly

- name: Clippy (MSRV)
uses: ./.github/actions/cargo-clippy
with:
toolchain: ${{ steps.msrv.outputs.msrv }}
all-features: ${{ inputs.all-features }}

- name: Cargo deny
uses: ./.github/actions/cargo-deny

- name: Tests (MSRV)
uses: ./.github/actions/cargo-test
with:
toolchain: ${{ steps.msrv.outputs.msrv }}
all-features: ${{ inputs.all-features }}

- name: Security audit
uses: ./.github/actions/cargo-audit

- name: Auto-commit README changes (any branch)
- name: Check formatting (nightly rustfmt)
uses: ./.github/actions/cargo-fmt
with:
toolchain: nightly

- name: Clippy (MSRV)
uses: ./.github/actions/cargo-clippy
with:
toolchain: ${{ steps.msrv.outputs.msrv }}
all-features: ${{ inputs.all-features }}

- name: Cargo deny
uses: ./.github/actions/cargo-deny

- name: Tests (MSRV)
uses: ./.github/actions/cargo-test
with:
toolchain: ${{ steps.msrv.outputs.msrv }}
all-features: ${{ inputs.all-features }}

- name: Security audit
uses: ./.github/actions/cargo-audit

- name: Auto-commit README changes (any branch)
if: always()
run: |
set -euo pipefail
Expand Down
Loading