bump chainlink-ccip/ccv #2878
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: Changeset Tests | |
| on: | |
| push: | |
| branches: [develop, main] | |
| pull_request: | |
| permissions: | |
| contents: read | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| test-deploy-chain-contracts: | |
| name: TestDeployChainContracts | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out code | |
| uses: actions/checkout@v6 | |
| - name: Install Go | |
| uses: actions/setup-go@v6 | |
| with: | |
| go-version-file: go.mod | |
| cache-dependency-path: go.sum | |
| - name: Run Go tests | |
| run: | | |
| cd deployment/changesets | |
| go test -v -count 1 -timeout 20m -run TestDeployChainContracts ./... | |
| test-deploy-coin: | |
| name: TestDeployCoin | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out code | |
| uses: actions/checkout@v6 | |
| - name: Install Go | |
| uses: actions/setup-go@v6 | |
| with: | |
| go-version-file: go.mod | |
| cache-dependency-path: go.sum | |
| - name: Run Go tests | |
| run: | | |
| cd deployment/changesets | |
| go test -v -count 1 -timeout 20m -run TestDeployCoin ./... | |
| test-deploy-tps: | |
| name: TestDeployTokenPool | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out code | |
| uses: actions/checkout@v6 | |
| - name: Install Go | |
| uses: actions/setup-go@v6 | |
| with: | |
| go-version-file: go.mod | |
| cache-dependency-path: go.sum | |
| - name: Run Go tests | |
| run: | | |
| cd deployment/changesets | |
| go test -v -count 1 -timeout 20m -run TestDeployTokenPool ./... |