Skip to content

Commit

Permalink
fix: trying to run test checks on CI
Browse files Browse the repository at this point in the history
  • Loading branch information
0xisk committed Mar 19, 2024
1 parent c9e42fe commit 09ffa15
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ repos:
- id: cargo-fmt
name: cargo format
entry: cargo fmt
language: system
language: rust
args: ["--", "--check"]
types: [rust]
stages: [pre-commit]
Expand All @@ -19,7 +19,7 @@ repos:
name: cargo clippy
description: Lint rust sources
entry: cargo clippy
language: system
language: rust
args: ["--", "-D", "warnings"]
types: [rust]
pass_filenames: false
Expand All @@ -29,7 +29,7 @@ repos:
name: cargo check
description: Check the package for errors.
entry: cargo check
language: system
language: rust
types: [rust]
pass_filenames: false
stages: [pre-commit]
Expand All @@ -38,7 +38,7 @@ repos:
name: cargo test
description: Checking tests for errors.
entry: cargo test
language: system
language: rust
types: [rust]
pass_filenames: false
stages: [pre-push]
stages: [pre-push, pre-merge-commit]

0 comments on commit 09ffa15

Please sign in to comment.