Skip to content

Commit

Permalink
fix: ignore more things by default
Browse files Browse the repository at this point in the history
  • Loading branch information
sakulstra committed Nov 14, 2024
1 parent a75d07a commit 9d413c4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ inputs:
required: true
COVERAGE_COMMAND:
description: "The command to run to generate the coverage report."
default: 'forge coverage --fuzz-runs 1 --report lcov --no-match-coverage "(.t.sol|.s.sol|deployments|mocks)"'
default: 'forge coverage --fuzz-runs 1 --report lcov --no-match-coverage "(test|script|.t.sol|.s.sol|deployment|mock)"'
required: false

outputs:
Expand Down
2 changes: 1 addition & 1 deletion src/action.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { readFileSync, existsSync } from "fs";
import { existsSync } from "fs";
import { getInput, setOutput } from "@actions/core";
import { context } from "@actions/github";
import { generateCoverageDiff } from "./lib";
Expand Down

0 comments on commit 9d413c4

Please sign in to comment.