Merge pull request #238 from bitromortac/2508-linter-updates #620
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: CI | |
| on: | |
| push: | |
| branches: | |
| - "master" | |
| pull_request: | |
| branches: | |
| - "*" | |
| defaults: | |
| run: | |
| shell: bash | |
| env: | |
| GO_VERSION: 1.23.6 | |
| jobs: | |
| build: | |
| name: build package, run linter | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: git checkout | |
| uses: actions/checkout@v4 | |
| - name: setup go ${{ env.GO_VERSION }} | |
| uses: actions/setup-go@v5 | |
| with: | |
| go-version: '~${{ env.GO_VERSION }}' | |
| - name: compile | |
| run: make build | |
| - name: lint | |
| run: make lint | |
| - name: unit-race | |
| run: make unit-race |