2021-05-04 21:57:33 +00:00
|
|
|
name: checks
|
|
|
|
on: [pull_request, workflow_dispatch]
|
2020-02-10 23:27:05 +00:00
|
|
|
|
2021-08-30 18:06:20 +00:00
|
|
|
env:
|
2021-08-31 00:01:30 +00:00
|
|
|
ACT_OWNER: ${{ github.repository_owner }}
|
|
|
|
ACT_REPOSITORY: ${{ github.repository }}
|
2022-03-29 20:10:32 +00:00
|
|
|
GO_VERSION: 1.18
|
2021-12-22 17:29:43 +00:00
|
|
|
CGO_ENABLED: 0
|
2021-08-30 18:06:20 +00:00
|
|
|
|
2020-02-10 23:27:05 +00:00
|
|
|
jobs:
|
2020-02-24 22:43:03 +00:00
|
|
|
lint:
|
2021-05-04 21:57:33 +00:00
|
|
|
name: lint
|
2020-02-24 22:43:03 +00:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2022-03-14 15:14:32 +00:00
|
|
|
- uses: actions/checkout@v3
|
2021-05-03 16:52:03 +00:00
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
2022-04-11 02:28:50 +00:00
|
|
|
- uses: actions/setup-go@v3
|
2021-03-30 19:26:25 +00:00
|
|
|
with:
|
2021-08-30 18:06:20 +00:00
|
|
|
go-version: ${{ env.GO_VERSION }}
|
2022-04-19 19:43:30 +00:00
|
|
|
check-latest: true
|
2022-10-24 03:26:50 +00:00
|
|
|
- uses: golangci/golangci-lint-action@v3.3.0
|
2021-03-29 14:55:51 +00:00
|
|
|
with:
|
2022-08-06 22:53:05 +00:00
|
|
|
version: v1.47.2
|
2022-10-24 03:38:06 +00:00
|
|
|
- uses: megalinter/megalinter/flavors/go@v6.13.0
|
2021-05-03 16:52:03 +00:00
|
|
|
env:
|
|
|
|
DEFAULT_BRANCH: master
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
2021-05-04 21:57:33 +00:00
|
|
|
VALIDATE_ALL_CODEBASE: false
|
2021-12-22 17:29:43 +00:00
|
|
|
GITHUB_STATUS_REPORTER: ${{ !env.ACT }}
|
|
|
|
GITHUB_COMMENT_REPORTER: ${{ !env.ACT }}
|
2020-02-24 22:43:03 +00:00
|
|
|
|
2021-05-04 21:57:33 +00:00
|
|
|
test-linux:
|
|
|
|
name: test-linux
|
2020-02-10 23:27:05 +00:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2022-03-14 15:14:32 +00:00
|
|
|
- uses: actions/checkout@v3
|
2021-03-29 16:07:13 +00:00
|
|
|
with:
|
|
|
|
fetch-depth: 2
|
2021-03-29 14:55:51 +00:00
|
|
|
- name: Set up QEMU
|
2022-05-09 03:03:00 +00:00
|
|
|
uses: docker/setup-qemu-action@v2
|
2022-04-11 02:28:50 +00:00
|
|
|
- uses: actions/setup-go@v3
|
2021-03-29 14:55:51 +00:00
|
|
|
with:
|
2021-08-30 18:06:20 +00:00
|
|
|
go-version: ${{ env.GO_VERSION }}
|
2022-04-19 19:43:30 +00:00
|
|
|
check-latest: true
|
2022-03-28 20:05:07 +00:00
|
|
|
- uses: actions/cache@v3
|
2021-05-02 15:13:30 +00:00
|
|
|
if: ${{ !env.ACT }}
|
|
|
|
with:
|
|
|
|
path: ~/go/pkg/mod
|
|
|
|
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
|
|
|
|
restore-keys: |
|
|
|
|
${{ runner.os }}-go-
|
|
|
|
- run: go test -v -cover -coverprofile=coverage.txt -covermode=atomic ./...
|
2021-03-29 16:07:13 +00:00
|
|
|
- name: Upload Codecov report
|
2022-09-26 02:37:58 +00:00
|
|
|
uses: codecov/codecov-action@v3.1.1
|
2021-03-29 14:55:51 +00:00
|
|
|
with:
|
|
|
|
files: coverage.txt
|
|
|
|
fail_ci_if_error: true # optional (default = false)
|
|
|
|
|
2020-08-30 05:55:22 +00:00
|
|
|
snapshot:
|
2021-05-04 21:57:33 +00:00
|
|
|
name: snapshot
|
2020-08-30 05:55:22 +00:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2022-03-14 15:14:32 +00:00
|
|
|
- uses: actions/checkout@v3
|
2022-04-11 02:28:50 +00:00
|
|
|
- uses: actions/setup-go@v3
|
2021-03-30 19:26:25 +00:00
|
|
|
with:
|
2021-08-30 18:06:20 +00:00
|
|
|
go-version: ${{ env.GO_VERSION }}
|
2022-04-19 19:43:30 +00:00
|
|
|
check-latest: true
|
2022-03-28 20:05:07 +00:00
|
|
|
- uses: actions/cache@v3
|
2021-05-02 15:13:30 +00:00
|
|
|
if: ${{ !env.ACT }}
|
|
|
|
with:
|
|
|
|
path: ~/go/pkg/mod
|
|
|
|
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
|
|
|
|
restore-keys: |
|
|
|
|
${{ runner.os }}-go-
|
2021-03-29 14:55:51 +00:00
|
|
|
- name: GoReleaser
|
2022-05-23 02:19:42 +00:00
|
|
|
uses: goreleaser/goreleaser-action@v3
|
2021-03-29 14:55:51 +00:00
|
|
|
with:
|
2021-10-24 16:36:09 +00:00
|
|
|
version: latest
|
2021-03-29 14:55:51 +00:00
|
|
|
args: release --snapshot --rm-dist
|
2021-05-23 15:32:55 +00:00
|
|
|
- name: Capture x86_64 (64-bit) Linux binary
|
|
|
|
if: ${{ !env.ACT }}
|
2022-04-11 02:38:04 +00:00
|
|
|
uses: actions/upload-artifact@v3
|
2021-03-29 14:55:51 +00:00
|
|
|
with:
|
2021-05-23 15:32:55 +00:00
|
|
|
name: act-linux-amd64
|
2022-04-19 19:27:37 +00:00
|
|
|
path: dist/act_linux_amd64_v1/act
|
2021-05-23 15:32:55 +00:00
|
|
|
- name: Capture i386 (32-bit) Linux binary
|
|
|
|
if: ${{ !env.ACT }}
|
2022-04-11 02:38:04 +00:00
|
|
|
uses: actions/upload-artifact@v3
|
2021-05-23 15:32:55 +00:00
|
|
|
with:
|
|
|
|
name: act-linux-i386
|
|
|
|
path: dist/act_linux_386/act
|
|
|
|
- name: Capture arm64 (64-bit) Linux binary
|
|
|
|
if: ${{ !env.ACT }}
|
2022-04-11 02:38:04 +00:00
|
|
|
uses: actions/upload-artifact@v3
|
2021-05-23 15:32:55 +00:00
|
|
|
with:
|
|
|
|
name: act-linux-arm64
|
|
|
|
path: dist/act_linux_arm64/act
|
|
|
|
- name: Capture armv6 (32-bit) Linux binary
|
|
|
|
if: ${{ !env.ACT }}
|
2022-04-11 02:38:04 +00:00
|
|
|
uses: actions/upload-artifact@v3
|
2021-05-23 15:32:55 +00:00
|
|
|
with:
|
|
|
|
name: act-linux-armv6
|
|
|
|
path: dist/act_linux_arm_6/act
|
|
|
|
- name: Capture armv7 (32-bit) Linux binary
|
|
|
|
if: ${{ !env.ACT }}
|
2022-04-11 02:38:04 +00:00
|
|
|
uses: actions/upload-artifact@v3
|
2021-05-23 15:32:55 +00:00
|
|
|
with:
|
|
|
|
name: act-linux-armv7
|
|
|
|
path: dist/act_linux_arm_7/act
|
|
|
|
- name: Capture x86_64 (64-bit) Windows binary
|
|
|
|
if: ${{ !env.ACT }}
|
2022-04-11 02:38:04 +00:00
|
|
|
uses: actions/upload-artifact@v3
|
2021-03-29 14:55:51 +00:00
|
|
|
with:
|
2021-05-23 15:32:55 +00:00
|
|
|
name: act-windows-amd64
|
2022-04-19 19:27:37 +00:00
|
|
|
path: dist/act_windows_amd64_v1/act.exe
|
2021-05-23 15:32:55 +00:00
|
|
|
- name: Capture i386 (32-bit) Windows binary
|
|
|
|
if: ${{ !env.ACT }}
|
2022-04-11 02:38:04 +00:00
|
|
|
uses: actions/upload-artifact@v3
|
2021-05-23 15:32:55 +00:00
|
|
|
with:
|
|
|
|
name: act-windows-i386
|
|
|
|
path: dist/act_windows_386/act.exe
|
2021-08-30 18:06:20 +00:00
|
|
|
- name: Capture arm64 (64-bit) Windows binary
|
|
|
|
if: ${{ !env.ACT }}
|
2022-04-11 02:38:04 +00:00
|
|
|
uses: actions/upload-artifact@v3
|
2021-08-30 18:06:20 +00:00
|
|
|
with:
|
|
|
|
name: act-windows-arm64
|
|
|
|
path: dist/act_windows_arm64/act.exe
|
2021-05-23 15:32:55 +00:00
|
|
|
- name: Capture armv7 (32-bit) Windows binary
|
|
|
|
if: ${{ !env.ACT }}
|
2022-04-11 02:38:04 +00:00
|
|
|
uses: actions/upload-artifact@v3
|
2021-03-29 14:55:51 +00:00
|
|
|
with:
|
2021-05-23 15:32:55 +00:00
|
|
|
name: act-windows-armv7
|
|
|
|
path: dist/act_windows_arm_7/act.exe
|
|
|
|
- name: Capture x86_64 (64-bit) MacOS binary
|
|
|
|
if: ${{ !env.ACT }}
|
2022-04-11 02:38:04 +00:00
|
|
|
uses: actions/upload-artifact@v3
|
2021-05-23 15:32:55 +00:00
|
|
|
with:
|
|
|
|
name: act-macos-amd64
|
2022-04-19 19:27:37 +00:00
|
|
|
path: dist/act_darwin_amd64_v1/act
|
2021-05-23 15:32:55 +00:00
|
|
|
- name: Capture arm64 (64-bit) MacOS binary
|
|
|
|
if: ${{ !env.ACT }}
|
2022-04-11 02:38:04 +00:00
|
|
|
uses: actions/upload-artifact@v3
|
2021-05-23 15:32:55 +00:00
|
|
|
with:
|
|
|
|
name: act-macos-arm64
|
|
|
|
path: dist/act_darwin_arm64/act
|
2021-12-08 18:49:33 +00:00
|
|
|
- name: Chocolatey
|
|
|
|
uses: ./.github/actions/choco
|
|
|
|
with:
|
|
|
|
version: v0.0.0-pr
|