Bump golang.org/x/net from 0.23.0 to 0.55.0 #102
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 jobs | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v3.4.0 | |
| with: | |
| submodules: true | |
| - uses: actions/setup-go@v4.0.0 | |
| with: | |
| go-version: '^1.20' | |
| - name: Build | |
| run: | | |
| make build | |
| checks: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v3.4.0 | |
| with: | |
| submodules: true | |
| - uses: actions/setup-go@v4.0.0 | |
| with: | |
| go-version: '^1.20' | |
| - run: make build | |
| - name: ModTidy check | |
| run: make check-modtidy | |
| - name: Fmt check | |
| run: make fmt-check | |
| - name: Vet check | |
| run: make vet | |
| - name: Lint check | |
| run: | | |
| make install_lint | |
| make lint | |
| tests-components: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v3.4.0 | |
| with: | |
| submodules: true | |
| - uses: actions/setup-go@v4.0.0 | |
| with: | |
| go-version: '^1.20' | |
| - name: "Launch db engine in background" | |
| run: | | |
| make test-database-up | |
| - name: "Give time for processes to start" | |
| run: sleep 5 | |
| - name: Components tests | |
| run: make test-components | |
| tests-integration: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v3.4.0 | |
| with: | |
| submodules: true | |
| - uses: actions/setup-go@v4.0.0 | |
| with: | |
| go-version: '^1.20' | |
| - name: "Launch db engine in background" | |
| run: | | |
| make test-database-up | |
| - name: "Give time for processes to start" | |
| run: sleep 5 | |
| - name: Integration test | |
| run: make test-integration |