* fix: Fixes issues w/ shared pointers to structs (#378) * feat: Adds even better debugging and linting support (#376) This is a #PATCH release.
41 lines
924 B
YAML
41 lines
924 B
YAML
name: Go
|
|
on:
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
- develop
|
|
jobs:
|
|
go_lint:
|
|
name: Lint Go 💅
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: actions/setup-go@v4
|
|
with:
|
|
go-version: '1.23.1'
|
|
cache: false
|
|
- name: golangci-lint
|
|
uses: golangci/golangci-lint-action@v3
|
|
with:
|
|
version: v1.61.0
|
|
only-new-issues: true
|
|
skip-cache: true
|
|
- name: Install staticcheck
|
|
run: go install honnef.co/go/tools/cmd/staticcheck@2024.1.1
|
|
- name: Run staticcheck
|
|
run: staticcheck ./...
|
|
go_test:
|
|
name: Test Go 🧪
|
|
needs: [go_lint]
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: Set up Go
|
|
uses: actions/setup-go@v4
|
|
with:
|
|
go-version: '1.19'
|
|
- name: Build
|
|
run: make compile
|
|
- name: Test
|
|
run: make test
|