chore: update dependencies #87
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: Go | |
| on: | |
| push: | |
| branches: [ "main" ] | |
| pull_request: | |
| branches: [ "main", "develop/pass" ] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Go | |
| uses: actions/setup-go@v5 | |
| with: | |
| go-version: '1.26' | |
| - name: Test if go.mod and go.sum are up to date | |
| run: | | |
| go mod tidy | |
| git diff --exit-code | |
| - name: Check if conformant to go fix | |
| run: | | |
| go fix ./... | |
| git diff --exit-code | |
| - name: Run linters | |
| run: go tool golangci-lint run | |
| - name: Unit Test | |
| run: make unit-tests-ci | |
| - name: e2e Test | |
| run: make ci-e2e |