feat(evm): Besu test network and the fungible suite running on it #18
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: Protect Integration Test Types | |
| on: | |
| pull_request: | |
| branches: [ main, feature/evm-network-driver, feature/zkat-snark-driver ] | |
| paths: | |
| - 'integration/ports.go' | |
| - 'integration/ports_test.go' | |
| - '.github/workflows/protect-integration-test-types.yml' | |
| env: | |
| GOFLAGS: -mod=mod | |
| jobs: | |
| guard-all-test-types: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Set up Go | |
| uses: actions/setup-go@v5 | |
| with: | |
| go-version-file: "integration/go.mod" | |
| cache-dependency-path: "**/*.sum" | |
| - name: Verify AllTestTypes retains required infrastructure types | |
| working-directory: integration | |
| run: go test . -run TestAllTestTypesIncludesRequiredInfrastructureTypes -v |