chore: update dependecy, CI, and linter #33
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 Matrix | |
on: [push, pull_request] | |
jobs: | |
cross: | |
name: Go | |
runs-on: ${{ matrix.os }} | |
env: | |
CGO_ENABLED: 0 | |
strategy: | |
matrix: | |
go-version: [ oldstable, stable ] | |
# macos-latest is removed because Docker seems not available | |
os: [ubuntu-latest, windows-latest] | |
steps: | |
# https://github.com/marketplace/actions/checkout | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
# https://github.com/marketplace/actions/setup-go-environment | |
- name: Set up Go ${{ matrix.go-version }} | |
uses: actions/setup-go@v5 | |
with: | |
go-version: ${{ matrix.go-version }} | |
- name: Test | |
run: go test -v -cover ./... | |
- name: Build | |
run: go build -v -ldflags "-s -w" -trimpath |