Skip to content

Commit

Permalink
Name all steps
Browse files Browse the repository at this point in the history
  • Loading branch information
daxpedda committed Dec 20, 2023
1 parent 1700e02 commit 2c125fd
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 5 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/audit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v4
- uses: taiki-e/install-action@v2
- name: Install `cargo-audit`
uses: taiki-e/install-action@v2
with:
tool: cargo-audit
- name: Run Audit
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/format.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,8 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v4
- uses: taiki-e/install-action@v2
- name: Install Taplo
uses: taiki-e/install-action@v2
with:
tool: taplo-cli
- name: Run Taplo
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
uses: actions/checkout@v4
- name: Install Rust
run: |
rustup toolchain install ${{ matrix.rust.version }} --profile minimal --component clippy${{ matrix.rust.component }} --target ${{ matrix.target }}
rustup toolchain install ${{ matrix.rust.version }} --profile minimal --component clippy${{ matrix.rust.component }} --allow-downgrade --target ${{ matrix.target }}
rustup default ${{ matrix.rust.version }}
- name: Run Clippy
env:
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/spellcheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v4
- uses: taiki-e/install-action@v2
- name: Install `cargo-spellcheck`
uses: taiki-e/install-action@v2
with:
tool: cargo-spellcheck
- name: Run Spellcheck
Expand All @@ -38,7 +39,8 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v4
- uses: taiki-e/install-action@v2
- name: Install Typos
uses: taiki-e/install-action@v2
with:
tool: typos-cli
- name: Run Typos
Expand Down

0 comments on commit 2c125fd

Please sign in to comment.