2021-02-09 15:48:59 +00:00
|
|
|
name: Test
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
pull_request:
|
2022-09-16 20:23:19 +00:00
|
|
|
workflow_dispatch:
|
2021-02-09 15:48:59 +00:00
|
|
|
|
|
|
|
env:
|
|
|
|
GO111MODULE: on
|
|
|
|
|
2022-10-03 14:53:12 +00:00
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
|
2021-02-09 15:48:59 +00:00
|
|
|
jobs:
|
|
|
|
|
2022-09-16 11:55:56 +00:00
|
|
|
|
|
|
|
lic-headers:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
|
2023-10-30 10:21:48 +00:00
|
|
|
- uses: actions/checkout@v4
|
2022-09-16 11:55:56 +00:00
|
|
|
|
|
|
|
- run: >-
|
|
|
|
docker run
|
|
|
|
-v $(pwd):/wrk -w /wrk
|
|
|
|
ghcr.io/google/addlicense
|
|
|
|
-c 'The Cobra Authors'
|
2023-03-06 02:28:31 +00:00
|
|
|
-y '2013-2023'
|
2022-09-16 11:55:56 +00:00
|
|
|
-l apache
|
|
|
|
-ignore '.github/**'
|
|
|
|
-check
|
|
|
|
.
|
|
|
|
|
|
|
|
|
2021-12-07 23:06:09 +00:00
|
|
|
golangci-lint:
|
2022-10-03 14:53:12 +00:00
|
|
|
permissions:
|
|
|
|
contents: read # for actions/checkout to fetch code
|
|
|
|
pull-requests: read # for golangci/golangci-lint-action to fetch pull requests
|
2021-12-07 23:06:09 +00:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
|
2023-10-30 10:21:48 +00:00
|
|
|
- uses: actions/checkout@v4
|
2022-09-14 03:31:59 +00:00
|
|
|
|
2023-12-11 10:06:36 +00:00
|
|
|
- uses: actions/setup-go@v5
|
2021-12-07 23:06:09 +00:00
|
|
|
with:
|
2023-09-08 00:30:51 +00:00
|
|
|
go-version: '^1.21'
|
2022-08-30 01:35:16 +00:00
|
|
|
check-latest: true
|
2022-09-14 03:31:59 +00:00
|
|
|
cache: true
|
2021-12-07 23:06:09 +00:00
|
|
|
|
2023-10-30 10:21:48 +00:00
|
|
|
- uses: actions/checkout@v4
|
2021-12-07 23:06:09 +00:00
|
|
|
|
2023-08-28 18:53:34 +00:00
|
|
|
- uses: golangci/golangci-lint-action@v3.7.0
|
2021-12-07 23:06:09 +00:00
|
|
|
with:
|
|
|
|
version: latest
|
|
|
|
args: --verbose
|
2021-02-09 15:48:59 +00:00
|
|
|
|
2022-09-16 11:55:56 +00:00
|
|
|
|
2021-02-09 15:48:59 +00:00
|
|
|
test-unix:
|
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
|
|
|
platform:
|
|
|
|
- ubuntu
|
|
|
|
- macOS
|
|
|
|
go:
|
2021-08-26 03:18:53 +00:00
|
|
|
- 17
|
2022-03-17 10:26:10 +00:00
|
|
|
- 18
|
2022-08-30 01:35:16 +00:00
|
|
|
- 19
|
2023-03-06 02:11:33 +00:00
|
|
|
- 20
|
2023-09-08 00:30:51 +00:00
|
|
|
- 21
|
2021-08-26 03:18:53 +00:00
|
|
|
name: '${{ matrix.platform }} | 1.${{ matrix.go }}.x'
|
2021-02-09 15:48:59 +00:00
|
|
|
runs-on: ${{ matrix.platform }}-latest
|
|
|
|
steps:
|
|
|
|
|
2023-10-30 10:21:48 +00:00
|
|
|
- uses: actions/checkout@v4
|
2021-02-09 15:48:59 +00:00
|
|
|
|
2023-12-11 10:06:36 +00:00
|
|
|
- uses: actions/setup-go@v5
|
2021-02-09 15:48:59 +00:00
|
|
|
with:
|
2022-09-14 03:31:59 +00:00
|
|
|
go-version: 1.${{ matrix.go }}.x
|
|
|
|
cache: true
|
2021-02-09 15:48:59 +00:00
|
|
|
|
|
|
|
- run: |
|
|
|
|
export GOBIN=$HOME/go/bin
|
2022-12-09 21:57:19 +00:00
|
|
|
go install github.com/kyoh86/richgo@latest
|
|
|
|
go install github.com/mitchellh/gox@latest
|
2021-02-09 15:48:59 +00:00
|
|
|
|
2022-11-25 20:55:09 +00:00
|
|
|
- run: RICHGO_FORCE_COLOR=1 PATH=$HOME/go/bin/:$PATH make richtest
|
2021-02-09 15:48:59 +00:00
|
|
|
|
2022-09-16 11:55:56 +00:00
|
|
|
|
2021-02-09 15:48:59 +00:00
|
|
|
test-win:
|
|
|
|
name: MINGW64
|
|
|
|
defaults:
|
|
|
|
run:
|
|
|
|
shell: msys2 {0}
|
|
|
|
runs-on: windows-latest
|
|
|
|
steps:
|
|
|
|
|
|
|
|
- shell: bash
|
|
|
|
run: git config --global core.autocrlf input
|
|
|
|
|
|
|
|
- uses: msys2/setup-msys2@v2
|
|
|
|
with:
|
|
|
|
msystem: MINGW64
|
|
|
|
update: true
|
|
|
|
install: >
|
|
|
|
git
|
|
|
|
make
|
|
|
|
unzip
|
|
|
|
mingw-w64-x86_64-go
|
|
|
|
|
2023-10-30 10:21:48 +00:00
|
|
|
- uses: actions/checkout@v4
|
2021-02-09 15:48:59 +00:00
|
|
|
|
2022-03-25 15:44:51 +00:00
|
|
|
- uses: actions/cache@v3
|
2021-02-09 15:48:59 +00:00
|
|
|
with:
|
|
|
|
path: ~/go/pkg/mod
|
|
|
|
key: ${{ runner.os }}-${{ matrix.go }}-${{ hashFiles('**/go.sum') }}
|
|
|
|
restore-keys: ${{ runner.os }}-${{ matrix.go }}-
|
|
|
|
|
|
|
|
- run: |
|
|
|
|
export GOBIN=$HOME/go/bin
|
2021-05-03 16:08:39 +00:00
|
|
|
go install github.com/kyoh86/richgo@latest
|
|
|
|
go install github.com/mitchellh/gox@latest
|
2021-02-09 15:48:59 +00:00
|
|
|
|
2022-11-25 20:55:09 +00:00
|
|
|
- run: RICHGO_FORCE_COLOR=1 PATH=$HOME/go/bin:$PATH make richtest
|