Skip to content

Commit

Permalink
ci/test-features: add dummy complete step for branch rules (privacy-s…
Browse files Browse the repository at this point in the history
…caling-explorations#1346)

### Description

Add a single dummy step that can be easily added to the branch
protection rules.
Without this change any matrix combination has to be added to branch
protection rules independently.
  • Loading branch information
pinkiebell authored Mar 31, 2023
1 parent 7e9603a commit d4b4b81
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/test-features.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ jobs:
timeout-minutes: 30
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
crate:
- zkevm-circuits
Expand Down Expand Up @@ -71,6 +72,11 @@ jobs:
cd foobar
cp "${GIT_ROOT}/rust-toolchain" . || true
cargo add --path "${GIT_ROOT}/${{ matrix.crate }}" --features '${{ matrix.feature }}'
cargo build
cd ../
rm -rf foobar
test_features_complete:
needs: [test_features]
runs-on: ubuntu-latest
steps:
- run: echo dummy

0 comments on commit d4b4b81

Please sign in to comment.