Bump golang.org/x/crypto from 0.50.0 to 0.52.0 #360
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: Integration tests | |
| on: | |
| push: | |
| branches: | |
| - develop | |
| - codegen-cmd | |
| pull_request: | |
| branches: | |
| - "**" | |
| jobs: | |
| test: | |
| name: Test | |
| runs-on: ubuntu-latest | |
| if: "${{ !startsWith(github.event.head_commit.message, 'GitBook: [#') }}" | |
| env: | |
| INTEGRATION_TESTS_IN_DOCKER: "true" | |
| RUN_INTEGRATION_TESTS: "true" | |
| CI: "true" | |
| CODEGEN_MAINNET_API_KEY: ${{ secrets.CODEGEN_MAINNET_API_KEY }} | |
| REGISTRY: ghcr.io | |
| BUF_TOKEN: ${{ secrets.BUF_TOKEN }} | |
| steps: | |
| - name: Check out code | |
| uses: actions/checkout@v3 | |
| - name: Set up Go | |
| uses: actions/setup-go@v2 | |
| with: | |
| go-version: ">=1.24.0" | |
| cache: true | |
| - name: Cache Go modules | |
| uses: actions/cache@v3 | |
| with: | |
| # In order: | |
| # * Module download cache | |
| # * Build cache (Linux) | |
| # * Build cache (Mac) | |
| path: | | |
| ~/go/pkg/mod | |
| ~/.cache/go-build | |
| ~/Library/Caches/go-build | |
| key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} | |
| restore-keys: | | |
| ${{ runner.os }}-go- | |
| - name: Log in to the Container registry | |
| uses: docker/login-action@v3 | |
| with: | |
| registry: ${{ env.REGISTRY }} | |
| username: ${{ github.actor }} | |
| password: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Build | |
| run: go build ./... | |
| - name: Run Tests | |
| run: go test -v ./... -timeout 1800s |