afero/.github/workflows/test.yml

39 lines
1019 B
YAML
Raw Normal View History

2022-07-14 13:07:48 +03:00
on:
push:
branches: [ main ]
pull_request:
name: Test
2023-11-28 12:33:00 +03:00
permissions:
contents: read
2022-07-14 13:07:48 +03:00
jobs:
test:
strategy:
matrix:
2023-11-28 12:22:52 +03:00
go-version: [1.19.x,1.20.x,1.21.x]
platform: [ubuntu-latest, macos-latest, windows-latest]
2022-07-14 13:07:48 +03:00
runs-on: ${{ matrix.platform }}
steps:
- name: Install Go
uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go-version }}
- name: Install staticcheck
2023-02-23 12:07:34 +03:00
if: matrix.go-version == '1.20.x'
2022-07-14 13:07:48 +03:00
run: go install honnef.co/go/tools/cmd/staticcheck@latest
shell: bash
- name: Update PATH
run: echo "$(go env GOPATH)/bin" >> $GITHUB_PATH
shell: bash
- name: Checkout code
uses: actions/checkout@v1
- name: Fmt
if: matrix.platform != 'windows-latest' # :(
run: "diff <(gofmt -d .) <(printf '')"
shell: bash
2022-07-14 13:07:48 +03:00
- name: Vet
run: go vet ./...
2022-07-14 14:06:04 +03:00
- name: Staticcheck
2023-02-23 12:07:34 +03:00
if: matrix.go-version == '1.20.x'
2022-07-14 14:06:04 +03:00
run: staticcheck ./...
2022-07-14 13:07:48 +03:00
- name: Test
run: go test -race ./...