Add Github Actions workflow as CI #1
Workflow file for this run
This file contains 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 | |
- setup-github-actions # for testing | |
pull_request: | |
branches: | |
- main | |
concurrency: | |
group: ${{github.workflow}}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
unit-tests: | |
name: unit tests | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/setup-go@v4 | |
with: | |
go-version: '1.22.2' | |
- uses: actions/checkout@v4 | |
- run: go mod verify | |
- run: go test ./... | |
fuzz-tests: | |
name: fuzz tests | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/setup-go@v4 | |
with: | |
go-version: '1.22.2' | |
- uses: actions/checkout@v4 | |
- run: go mod verify | |
- run: cd fuzz && go test ./... | |
integration-tests: | |
name: integration tests | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/setup-go@v4 | |
with: | |
go-version: '1.22.2' | |
- uses: actions/checkout@v4 | |
- run: go mod verify | |
- run: cd integration && go test ./... | |
go-vet: | |
name: go vet | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
modules: ['.', 'fuzz', 'integration'] | |
permissions: | |
contents: read | |
pull-requests: read | |
checks: write | |
steps: | |
- uses: actions/setup-go@v4 | |
with: | |
go-version: '1.22.2' | |
- uses: actions/checkout@v4 | |
- run: cd "${{ matrix.modules }}" && go vet ./... | |
golangci-lint: | |
name: golangci-lint | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
modules: ['.', 'fuzz', 'integration'] | |
permissions: | |
contents: read | |
pull-requests: read | |
checks: write | |
steps: | |
- uses: actions/setup-go@v4 | |
with: | |
go-version: '1.22.2' | |
- uses: actions/checkout@v4 | |
- uses: golangci/golangci-lint-action@v5 | |
with: | |
working-directory: '${{ matrix.modules }}' | |
version: 'v1.57.2' |