chore: Update release pipeline to use GoReleaser v6 and simplify steps #122
Workflow file for this run
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
| --- | |
| # based on https://github.com/mvdan/github-actions-golang | |
| name: CI | |
| on: | |
| pull_request: | |
| branches: ["main"] | |
| paths-ignore: ["docs/**"] | |
| push: | |
| branches: ["main"] | |
| paths-ignore: ["docs/**"] | |
| # Allows you to run this workflow manually from the Actions tab | |
| workflow_dispatch: | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v6 | |
| - name: Install Go | |
| uses: actions/setup-go@v6 | |
| with: | |
| go-version-file: go.mod | |
| - name: Downloads the dependencies | |
| run: make download | |
| - name: Lints all code with golangci-lint | |
| run: make lint | |
| - name: Runs all tests | |
| run: make test |