Fix BN254 G1/G2 Point Encoding and Decoding #534
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: 'check for changes that should accompany env.json change' | |
| on: | |
| pull_request: | |
| paths: | |
| - 'soroban-env-common/env.json' | |
| jobs: | |
| check: | |
| if: "!contains( github.event.pull_request.labels.*.name, 'skip-env-interface-version-bump')" | |
| runs-on: 'ubuntu-latest' | |
| steps: | |
| - name: "check soroban-env-common/src/meta.rs was modified" | |
| uses: brettcannon/check-for-changed-files@36aaa76474fc979db4e19e44c05e8e978759ac01 | |
| with: | |
| file-pattern: "soroban-env-common/src/meta.rs" | |
| - name: "check 'pre_release_version:' changed in the diff" | |
| uses: graydon/gh-pr-content-checker@a85f72c50a84400bb3e0837555b5a50c985370e7 | |
| with: | |
| github-token: ${{github.token}} | |
| diffContainsRegex: " pre_release_version: [0-9]+," | |
| - name: "check soroban-test-wasms/wasm-workspace/opt/*.wasm were modified" | |
| uses: brettcannon/check-for-changed-files@36aaa76474fc979db4e19e44c05e8e978759ac01 | |
| with: | |
| file-pattern: "soroban-test-wasms/wasm-workspace/opt/curr/*.wasm" |