update dependencies #67
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: check | |
| permissions: read-all | |
| on: | |
| push: | |
| branches: | |
| - 'main' | |
| pull_request: | |
| branches: | |
| - 'main' | |
| jobs: | |
| lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: checkout repository | |
| uses: actions/checkout@v5 | |
| - name: setup go build environment | |
| uses: actions/setup-go@v6 | |
| with: | |
| go-version-file: 'go.mod' | |
| check-latest: true | |
| - name: dependency cache | |
| uses: actions/cache@v4 | |
| with: | |
| path: $(go env GOPATH)/pkg/mod | |
| key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} | |
| restore-keys: ${{ runner.os }}-go- | |
| - name: linter | |
| run: make mod deps linter GOPATH=$(go env GOPATH) | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: checkout repository | |
| uses: actions/checkout@v5 | |
| - name: setup go build environment | |
| uses: actions/setup-go@v6 | |
| with: | |
| go-version-file: 'go.mod' | |
| check-latest: true | |
| - name: dependency cache | |
| uses: actions/cache@v4 | |
| with: | |
| path: $(go env GOPATH)/pkg/mod | |
| key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} | |
| restore-keys: ${{ runner.os }}-go- | |
| - name: unit tests | |
| run: make mod deps confcheck test GOPATH=$(go env GOPATH) | |
| - name: coverage report | |
| uses: coverallsapp/github-action@v2 | |
| continue-on-error: true | |
| with: | |
| file: target/report/coverage.out | |
| format: golang | |
| integration-test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: checkout repository | |
| uses: actions/checkout@v5 | |
| - name: setup go build environment | |
| uses: actions/setup-go@v6 | |
| with: | |
| go-version-file: 'go.mod' | |
| check-latest: true | |
| - name: dependency cache | |
| uses: actions/cache@v4 | |
| with: | |
| path: $(go env GOPATH)/pkg/mod | |
| key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} | |
| restore-keys: ${{ runner.os }}-go- | |
| - name: set RELEASE number | |
| run: echo ${GITHUB_RUN_NUMBER} > RELEASE | |
| - name: integration tests | |
| run: make mod deps generate build docker dockertest GOPATH=$(go env GOPATH) |