build(deps): bump the dep-updates group across 1 directory with 4 updates #1157
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: check | |
on: | |
pull_request: | |
branches: | |
- main | |
merge_group: | |
branches: | |
- main | |
jobs: | |
rustfmt: | |
name: rustfmt | |
runs-on: ubuntu-latest | |
steps: | |
- name: harden runner | |
uses: step-security/harden-runner@91182cccc01eb5e619899d80e4e971d6181294a7 # v2.10.1 | |
with: | |
egress-policy: audit | |
- name: checkout repository | |
uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1 | |
with: | |
submodules: recursive | |
- name: install stable rust toolchain with rustfmt | |
run: | | |
rustup update --no-self-update stable | |
rustup default stable | |
rustup component add rustfmt | |
- name: install linux dependencies | |
run: ./hack/ci/install-linux-deps.sh | |
- name: cargo fmt | |
run: ./hack/build/cargo.sh fmt --all -- --check | |
shellcheck: | |
name: shellcheck | |
runs-on: ubuntu-latest | |
steps: | |
- name: harden runner | |
uses: step-security/harden-runner@91182cccc01eb5e619899d80e4e971d6181294a7 # v2.10.1 | |
with: | |
egress-policy: audit | |
- name: checkout repository | |
uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1 | |
with: | |
submodules: recursive | |
- name: shellcheck | |
run: ./hack/code/shellcheck.sh | |
full-build: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
arch: | |
- x86_64 | |
- aarch64 | |
env: | |
TARGET_ARCH: "${{ matrix.arch }}" | |
name: full build linux-${{ matrix.arch }} | |
steps: | |
- name: harden runner | |
uses: step-security/harden-runner@91182cccc01eb5e619899d80e4e971d6181294a7 # v2.10.1 | |
with: | |
egress-policy: audit | |
- name: checkout repository | |
uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1 | |
with: | |
submodules: recursive | |
- name: install stable rust toolchain | |
run: | | |
rustup update --no-self-update stable | |
rustup default stable | |
- name: install linux dependencies | |
run: ./hack/ci/install-linux-deps.sh | |
- name: cargo build | |
run: ./hack/build/cargo.sh build | |
full-test: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
arch: | |
- x86_64 | |
- aarch64 | |
env: | |
TARGET_ARCH: "${{ matrix.arch }}" | |
name: full test linux-${{ matrix.arch }} | |
steps: | |
- name: harden runner | |
uses: step-security/harden-runner@91182cccc01eb5e619899d80e4e971d6181294a7 # v2.10.1 | |
with: | |
egress-policy: audit | |
- name: checkout repository | |
uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1 | |
with: | |
submodules: recursive | |
- name: install stable rust toolchain | |
run: | | |
rustup update --no-self-update stable | |
rustup default stable | |
- name: install linux dependencies | |
run: ./hack/ci/install-linux-deps.sh | |
- name: cargo test | |
run: ./hack/build/cargo.sh test | |
full-clippy: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
arch: | |
- x86_64 | |
- aarch64 | |
env: | |
TARGET_ARCH: "${{ matrix.arch }}" | |
name: full clippy linux-${{ matrix.arch }} | |
steps: | |
- name: harden runner | |
uses: step-security/harden-runner@91182cccc01eb5e619899d80e4e971d6181294a7 # v2.10.1 | |
with: | |
egress-policy: audit | |
- name: checkout repository | |
uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1 | |
with: | |
submodules: recursive | |
- name: install stable rust toolchain with clippy | |
run: | | |
rustup update --no-self-update stable | |
rustup default stable | |
rustup component add clippy | |
- name: install linux dependencies | |
run: ./hack/ci/install-linux-deps.sh | |
- name: cargo clippy | |
run: ./hack/build/cargo.sh clippy |