Skip to content

Commit

Permalink
fix syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
39bytes committed Aug 15, 2024
1 parent 90e0ed1 commit d64dd5e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- uses: actions/checkout@v4
- name: Install rust toolchain components
uses: dtolnay/rust-toolchain@stable
run: cargo check
- run: cargo check

format:
name: Format
Expand All @@ -25,7 +25,7 @@ jobs:
uses: dtolnay/rust-toolchain@stable
with:
components: rustfmt
run: cargo +nightly fmt --check
- run: cargo +nightly fmt --check

clippy:
name: Lint
Expand All @@ -36,7 +36,7 @@ jobs:
uses: dtolnay/rust-toolchain@stable
with:
components: clippy
run: cargo clippy
- run: cargo clippy

test:
name: Tests
Expand All @@ -45,4 +45,4 @@ jobs:
- uses: actions/checkout@v4
- name: Install rust toolchain components
uses: dtolnay/rust-toolchain@stable
run: cargo test
- run: cargo test

0 comments on commit d64dd5e

Please sign in to comment.