Pref64 lifetime fix (#46) #306
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: Static Analysis | |
on: | |
push: | |
branches: | |
- "*" | |
pull_request: | |
branches: | |
- "*" | |
jobs: | |
build: | |
strategy: | |
matrix: | |
go-version: ["1.22.0"] | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set up Go | |
uses: actions/setup-go@v3 | |
with: | |
go-version: ${{ matrix.go-version }} | |
id: go | |
- name: Check out code into the Go module directory | |
uses: actions/checkout@v3 | |
- name: Install staticcheck | |
run: go install honnef.co/go/tools/cmd/staticcheck@latest | |
- name: Print staticcheck version | |
run: staticcheck -version | |
- name: Run staticcheck | |
run: staticcheck ./... | |
- name: Install enumcheck | |
run: go install loov.dev/enumcheck@latest | |
- name: Run enumcheck | |
run: enumcheck ./... | |
- name: Run go vet | |
run: go vet ./... | |
- name: Run CI script | |
run: ./scripts/cibuild.sh | |
- name: Build CoreRAD | |
run: go build ./cmd/corerad/ | |
- name: Generate default TOML configuration | |
run: ./corerad -init | |
- name: Install tomlv | |
run: go install github.com/BurntSushi/toml/cmd/tomlv@latest | |
- name: Verify default TOML configuration | |
run: tomlv ./corerad.toml |