This repository was archived by the owner on Jan 30, 2026. It is now read-only.
Golang #1
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: Golang | |
| on: | |
| workflow_call: {} | |
| workflow_dispatch: {} | |
| jobs: | |
| sanity: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Go | |
| uses: actions/setup-go@v5 | |
| with: | |
| go-version-file: go.mod | |
| - name: Tidy | |
| run: make ci.tidy | |
| - name: Vet | |
| run: make vet | |
| - name: Format | |
| run: make ci.fmt | |
| - name: Lint | |
| run: make lint | |
| - name: Test | |
| run: make cover | |
| # - name: Coveralls | |
| # uses: coverallsapp/github-action@v2 | |
| # with: | |
| # github-token: ${{ secrets.GITHUB_TOKEN }} | |
| # file: coverage.out | |
| - name: Build | |
| run: make build |