build(deps): bump wagoid/commitlint-github-action from 5.4.5 to 6.0.1… #44
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: linter | |
permissions: | |
contents: read | |
# To report GitHub Actions status checks | |
statuses: write | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
workflow_dispatch: | |
inputs: | |
commit_sha: | |
description: Git commit sha, on which, to run this workflow | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }}-${{ github.event_name }} | |
cancel-in-progress: true | |
jobs: | |
lint_commits: | |
name: Lint Commit Messages | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Check Commit Lint | |
with: | |
configFile: "./.commitlint.config.js" | |
uses: wagoid/[email protected] | |
lint_check: | |
name: Rust - lint_${{ matrix.lint_projects }} | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
lint_projects: | |
- cargo_fmt_check | |
- cargo_toml_fmt_files | |
- cargo_clippy | |
- cargo_deny | |
steps: | |
- name: Run the checkout command | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
submodules: "true" | |
- name: Install rust toolchain | |
uses: actions-rust-lang/setup-rust-toolchain@v1 | |
with: | |
toolchain: stable | |
components: clippy, rustfmt | |
- name: Install development tools | |
uses: taiki-e/install-action@v2 | |
with: | |
tool: cargo-deny, dprint | |
- name: Rust Cache | |
uses: actions/cache@v4 | |
continue-on-error: false | |
with: | |
path: | | |
~/.cargo/bin | |
~/.cargo/registry | |
~/.cargo/git/db/ | |
key: ${{ runner.os }}-sdk-rust-${{ hashFiles('**/Cargo.lock') }} | |
restore-keys: | | |
${{ runner.os }}-sdk-rust- | |
- name: Check cargo version | |
run: cargo --version | |
- name: Run ${{ matrix.lint_projects }} | |
run: make -f Makefile lint_${{ matrix.lint_projects }} |