build(deps): bump codecov/codecov-action from 5.5.1 to 5.5.2 #1179
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: Build | |
| on: [push, pull_request] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| go: [ '1.25' ] | |
| name: Go ${{ matrix.go }} | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Setup Go | |
| uses: actions/setup-go@v6 | |
| with: | |
| go-version: ${{ matrix.go }} | |
| - name: Run staticcheck (only latest go version) | |
| if: matrix.go == '1.25' | |
| run: ./staticcheck.sh | |
| - name: Login to Docker Hub | |
| uses: docker/login-action@v3 | |
| with: | |
| username: ${{ secrets.DOCKER_HUB_USERNAME }} | |
| password: ${{ secrets.DOCKER_HUB_TOKEN }} | |
| - name: Start docker-compose services | |
| run: docker compose -f test/docker-compose-it.yaml up -d --wait | |
| - name: Wait for DB services to be up | |
| run: sleep 10 | |
| - name: Build and test migrator | |
| run: ./coverage.sh | |
| - name: Run HTTP integration tests | |
| run: ./test/http-integration-tests.sh | |
| - uses: codecov/[email protected] |