Skip to content

Commit

Permalink
fix paths-filter
Browse files Browse the repository at this point in the history
  • Loading branch information
tcoratger committed Oct 2, 2024
1 parent b45a9be commit 8eb9d2e
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ jobs:
solidity: ${{ steps.filter.outputs.solidity }}
tests: ${{ steps.filter.outputs.tests }}
makefile: ${{ steps.filter.outputs.makefile }}
rust: ${{ steps.filter.outputs.rust }}
steps:
- uses: actions/checkout@v4
- uses: dorny/paths-filter@v3
Expand All @@ -40,14 +41,17 @@ jobs:
- 'tests/**'
makefile:
- 'Makefile'
rust:
- 'rust-toolchain'
build:
runs-on: ubuntu-latest
needs: paths-filter
if:
needs.paths-filter.outputs.src == 'true' ||
needs.paths-filter.outputs.kakarot_scripts == 'true' ||
needs.paths-filter.outputs.makefile == 'true'
needs.paths-filter.outputs.makefile == 'true' ||
needs.paths-filter.outputs.rust == 'true'
steps:
- uses: actions/checkout@v4
- uses: astral-sh/setup-uv@v2
Expand Down Expand Up @@ -110,7 +114,8 @@ jobs:
needs.paths-filter.outputs.kakarot_scripts == 'true' ||
needs.paths-filter.outputs.solidity == 'true' ||
needs.paths-filter.outputs.tests == 'true' ||
needs.paths-filter.outputs.makefile == 'true'
needs.paths-filter.outputs.makefile == 'true' ||
needs.paths-filter.outputs.rust == 'true'
steps:
- uses: actions/checkout@v4
- name: Extract Katana Version
Expand Down

0 comments on commit 8eb9d2e

Please sign in to comment.