Update actions/checkout digest to 11bd719 #49
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: test-and-lint | |
on: | |
pull_request: | |
branches: | |
- main | |
permissions: | |
contents: read | |
jobs: | |
# Runs `go test` against 3 operating systems. | |
# gotest: | |
# strategy: | |
# matrix: | |
# os: [macos, windows, ubuntu] | |
# runs-on: ${{ matrix.os }}-latest | |
# steps: | |
# - uses: actions/[email protected] | |
# - uses: actions/setup-go@v3 | |
# with: | |
# go-version: 1.19 | |
# - name: go-test | |
# run: go test -race -covermode=atomic ./... | |
# Runs golangci-lint on macos against freebsd and macos. | |
golangci-darwin: | |
strategy: | |
matrix: | |
os: [darwin, freebsd] | |
name: golangci-lint | |
runs-on: macos-latest | |
env: | |
GOOS: ${{ matrix.os }} | |
steps: | |
- uses: actions/setup-go@v5 | |
with: | |
go-version: 1.19 | |
- uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4 | |
- name: golangci-lint | |
uses: golangci/golangci-lint-action@v3 | |
with: | |
version: v1.50 | |
# Runs golangci-lint on linux against linux and windows. | |
golangci-linux: | |
strategy: | |
matrix: | |
os: [windows, linux] | |
name: golangci-lint | |
runs-on: ubuntu-latest | |
env: | |
GOOS: ${{ matrix.os }} | |
steps: | |
- uses: actions/setup-go@v5 | |
with: | |
go-version: 1.19 | |
- uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4 | |
- name: golangci-lint | |
uses: golangci/golangci-lint-action@v3 | |
with: | |
version: v1.50 |