Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
eightfilms committed Dec 19, 2024
1 parent ed9cbd7 commit 92c35e4
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ jobs:
- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@nightly
with:
toolchain: ${cat rust-toolchain}
toolchain: $(cat rust-toolchain)
components: rustfmt, clippy

- name: Test (compile)
- name: Compile
run: cargo test --no-run

- name: Test
Expand All @@ -38,7 +38,7 @@ jobs:
- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@nightly
with:
toolchain: ${cat rust-toolchain}
toolchain: $(cat rust-toolchain)
components: rustfmt, clippy

- name: Run clippy
Expand All @@ -53,23 +53,23 @@ jobs:
- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@nightly
with:
toolchain: ${cat rust-toolchain}
toolchain: $(cat rust-toolchain)
components: rustfmt, clippy

- name: Run rustfmt
run: cargo fmt --all --check


taplo-fmt:
needs: check-runner
runs-on: ${{ needs.check-runner.outputs.runner-label }}
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4

- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@nightly
with:
toolchain: ${cat rust-toolchain}
toolchain: $(cat rust-toolchain)
components: rustfmt, clippy


Expand Down

0 comments on commit 92c35e4

Please sign in to comment.