Skip to content

Commit 0db4fdf

Browse files
committed
ci: run tests even if lint fails
1 parent fdb3c5d commit 0db4fdf

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

.github/workflows/ci-deep.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
uses: "sablier-labs/gha-utils/.github/workflows/forge-build.yml@main"
3030

3131
test-integration:
32-
needs: ["lint", "build"]
32+
needs: ["build"]
3333
uses: "sablier-labs/gha-utils/.github/workflows/forge-test.yml@main"
3434
with:
3535
foundry-fuzz-runs: ${{ fromJSON(inputs.integrationFuzzRuns || '50000') }}
@@ -38,7 +38,7 @@ jobs:
3838
name: "Integration tests"
3939

4040
test-fork:
41-
needs: ["lint", "build"]
41+
needs: ["build"]
4242
secrets:
4343
MAINNET_RPC_URL: ${{ secrets.MAINNET_RPC_URL }}
4444
uses: "sablier-labs/gha-utils/.github/workflows/forge-test.yml@main"

.github/workflows/ci-fork.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
uses: "sablier-labs/gha-utils/.github/workflows/forge-build.yml@main"
1313

1414
test-fork:
15-
needs: ["lint", "build"]
15+
needs: ["build"]
1616
secrets:
1717
MAINNET_RPC_URL: ${{ secrets.MAINNET_RPC_URL }}
1818
uses: "sablier-labs/gha-utils/.github/workflows/forge-test.yml@main"
@@ -24,7 +24,7 @@ jobs:
2424
name: "Fork tests"
2525

2626
test-utils:
27-
needs: ["lint", "build"]
27+
needs: ["build"]
2828
uses: "sablier-labs/gha-utils/.github/workflows/forge-test.yml@main"
2929
with:
3030
foundry-profile: "test-optimized"

.github/workflows/ci.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -20,15 +20,15 @@ jobs:
2020
uses: "sablier-labs/gha-utils/.github/workflows/forge-build.yml@main"
2121

2222
test-bulloak:
23-
needs: ["lint", "build"]
23+
needs: ["build"]
2424
if: needs.build.outputs.cache-status != 'primary'
2525
uses: "sablier-labs/gha-utils/.github/workflows/bulloak-check.yml@main"
2626
with:
2727
skip-modifiers: true
2828
tree-path: "tests"
2929

3030
test-integration:
31-
needs: ["lint", "build"]
31+
needs: ["build"]
3232
if: needs.build.outputs.cache-status != 'primary'
3333
uses: "sablier-labs/gha-utils/.github/workflows/forge-test.yml@main"
3434
with:
@@ -38,7 +38,7 @@ jobs:
3838
name: "Integration tests"
3939

4040
test-fork:
41-
needs: ["lint", "build"]
41+
needs: ["build"]
4242
if: needs.build.outputs.cache-status != 'primary'
4343
secrets:
4444
API_KEY_INFURA: ${{ secrets.API_KEY_INFURA }}
@@ -51,7 +51,7 @@ jobs:
5151
name: "Fork tests"
5252

5353
coverage:
54-
needs: ["lint", "build"]
54+
needs: ["build"]
5555
if: needs.build.outputs.cache-status != 'primary'
5656
secrets:
5757
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}

0 commit comments

Comments
 (0)