File tree Expand file tree Collapse file tree 6 files changed +14
-14
lines changed
Expand file tree Collapse file tree 6 files changed +14
-14
lines changed Original file line number Diff line number Diff line change @@ -3,10 +3,10 @@ name: Note Send Proof Tests
33on :
44 push :
55 branches :
6- - main
6+ - next
77 pull_request :
88 branches :
9- - main
9+ - next
1010 paths :
1111 - " note-send-proof/**"
1212 - " .github/workflows/note-send-proof-tests.yml"
3838 - name : Install Aztec CLI
3939 run : |
4040 curl -s https://install.aztec.network > tmp.sh
41- NON_INTERACTIVE=1 bash tmp.sh
41+ VERSION=${{ env.AZTEC_VERSION }} NON_INTERACTIVE=1 bash tmp.sh
4242 rm tmp.sh
4343
4444 - name : Update path
Original file line number Diff line number Diff line change @@ -3,10 +3,10 @@ name: Prediction Market Tests
33on :
44 push :
55 branches :
6- - main
6+ - next
77 pull_request :
88 branches :
9- - main
9+ - next
1010 paths :
1111 - " prediction-market/**"
1212 - " .github/workflows/prediction-market-tests.yml"
4040 - name : Install Aztec CLI
4141 run : |
4242 curl -s https://install.aztec.network > tmp.sh
43- NON_INTERACTIVE=1 bash tmp.sh
43+ VERSION=${{ env.AZTEC_VERSION }} NON_INTERACTIVE=1 bash tmp.sh
4444 rm tmp.sh
4545
4646 - name : Update path
Original file line number Diff line number Diff line change @@ -3,10 +3,10 @@ name: Recursive Verification Tests
33on :
44 push :
55 branches :
6- - main
6+ - next
77 pull_request :
88 branches :
9- - main
9+ - next
1010 paths :
1111 - " recursive_verification/**"
1212 - " .github/workflows/recursive-verification-tests.yml"
3737 - name : Install Aztec CLI
3838 run : |
3939 curl -s https://install.aztec.network > tmp.sh
40- NON_INTERACTIVE=1 bash tmp.sh
40+ VERSION=${{ env.AZTEC_VERSION }} NON_INTERACTIVE=1 bash tmp.sh
4141 rm tmp.sh
4242
4343 - name : Update path
Original file line number Diff line number Diff line change @@ -3,10 +3,10 @@ name: Test Wallet Webapp Tests
33on :
44 push :
55 branches :
6- - main
6+ - next
77 pull_request :
88 branches :
9- - main
9+ - next
1010 paths :
1111 - " test-wallet-webapp/**"
1212 - " .github/workflows/test-wallet-webapp-tests.yml"
3737 - name : Install Aztec CLI
3838 run : |
3939 curl -s https://install.aztec.network > tmp.sh
40- NON_INTERACTIVE=1 bash tmp.sh
40+ VERSION=${{ env.AZTEC_VERSION }} NON_INTERACTIVE=1 bash tmp.sh
4141 rm tmp.sh
4242
4343 - name : Update path
Original file line number Diff line number Diff line change @@ -288,7 +288,7 @@ The repository includes GitHub Actions workflows for automated testing:
288288
289289Runs on:
290290
291- - Push to main branch
291+ - Push to next branch
292292- Pull requests modifying ` recursive_verification/** `
293293- Manual workflow dispatch
294294
Original file line number Diff line number Diff line change @@ -74,7 +74,7 @@ aztec-wallet profile <function> --args <args> --contract-address <alias> -f test
7474
7575### Continuous Integration
7676
77- The repository includes GitHub Actions workflows that automatically test examples on pull requests and pushes to the main branch.
77+ The repository includes GitHub Actions workflows that automatically test examples on pull requests and pushes to the next branch.
7878
7979### Local Testing
8080
You can’t perform that action at this time.
0 commit comments