Skip to content

Bump EmbarkStudios/cargo-deny-action from 2.0.2 to 2.0.5 #546

Bump EmbarkStudios/cargo-deny-action from 2.0.2 to 2.0.5

Bump EmbarkStudios/cargo-deny-action from 2.0.2 to 2.0.5 #546

Workflow file for this run

on:
push:
paths-ignore:
- "**.md"
pull_request:
paths-ignore:
- "**.md"
name: Format and Clippy
env:
AS: nasm
AR: llvm-ar
CC: clang
permissions:
contents: read
jobs:
clippy:
name: Clippy
runs-on: ubuntu-20.04
steps:
- name: Harden Runner
uses: step-security/harden-runner@0080882f6c36860b6ba35c610c98ce87d4e2f26f # v2.10.2
with:
egress-policy: audit
- name: Checkout sources
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Initialize and update submodules
run: |
git config --global http.postBuffer 524288000
git config --global http.sslVerify "false"
git submodule update --init --recursive --depth 1
# Install first since it's needed to build NASM
- name: Install LLVM and Clang
uses: KyleMayes/install-llvm-action@e0a8dc9cb8a22e8a7696e8a91a4e9581bec13181 # v2.0.5
with:
version: "10.0"
directory: ${{ runner.temp }}/llvm
- name: install NASM
uses: ilammy/setup-nasm@13cbeb366c45c4379d3478cdcbadd8295feb5028 # v1.5.1
- name: Install toolchain with clippy available
uses: actions-rs/toolchain@16499b5e05bf2e26879000db0c1d13f7e13fa3af # v1.0.7
with:
profile: minimal
toolchain: nightly-2023-12-31
override: true
components: clippy
- name: Preparation Work
run: bash sh_script/pre-build.sh
- name: Run cargo clippy
run: cargo clippy -- -A clippy::redundant_field_names
rustfmt:
name: Format
runs-on: ubuntu-20.04
steps:
# Install first since it's needed to build NASM
- name: Harden Runner
uses: step-security/harden-runner@0080882f6c36860b6ba35c610c98ce87d4e2f26f # v2.10.2
with:
egress-policy: audit
- name: Install LLVM and Clang
uses: KyleMayes/install-llvm-action@e0a8dc9cb8a22e8a7696e8a91a4e9581bec13181 # v2.0.5
with:
version: "10.0"
directory: ${{ runner.temp }}/llvm
- name: install NASM
uses: ilammy/setup-nasm@13cbeb366c45c4379d3478cdcbadd8295feb5028 # v1.5.1
- name: Checkout sources
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Initialize and update submodules
run: |
git config --global http.postBuffer 524288000
git config --global http.sslVerify "false"
git submodule update --init --recursive --depth 1
- name: Install toolchain with rustfmt available
uses: actions-rs/toolchain@16499b5e05bf2e26879000db0c1d13f7e13fa3af # v1.0.7
with:
profile: minimal
toolchain: nightly-2023-12-31
override: true
components: rustfmt
- name: Preparation Work
run: bash sh_script/pre-build.sh
- name: Run cargo check
uses: actions-rs/cargo@844f36862e911db73fe0815f00a4a2602c279505 # v1.0.3
with:
command: check
- name: Run cargo fmt
uses: actions-rs/cargo@844f36862e911db73fe0815f00a4a2602c279505 # v1.0.3
with:
command: fmt
args: -- --check