2019-12-06 11:22:07 +00:00
|
|
|
name: CI
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
2023-06-29 03:46:41 +00:00
|
|
|
branches: [master]
|
2019-12-06 11:22:07 +00:00
|
|
|
pull_request:
|
|
|
|
|
|
|
|
jobs:
|
2022-11-03 17:16:10 +00:00
|
|
|
build:
|
|
|
|
name: Build
|
|
|
|
runs-on: ubuntu-latest
|
2023-06-29 03:46:41 +00:00
|
|
|
|
2022-11-03 17:16:10 +00:00
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
|
|
|
include:
|
|
|
|
- goos: js
|
|
|
|
goarch: wasm
|
|
|
|
- goos: aix
|
|
|
|
goarch: ppc64
|
|
|
|
|
|
|
|
steps:
|
2023-06-29 03:46:41 +00:00
|
|
|
- name: Checkout repository
|
2024-06-13 17:11:30 +00:00
|
|
|
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
|
2023-06-03 12:59:37 +00:00
|
|
|
|
2022-11-03 17:16:10 +00:00
|
|
|
- name: Set up Go
|
2024-07-10 17:45:35 +00:00
|
|
|
uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5.0.2
|
2022-11-03 17:16:10 +00:00
|
|
|
with:
|
2024-03-25 12:22:26 +00:00
|
|
|
go-version: "1.22"
|
2022-11-03 17:16:10 +00:00
|
|
|
|
|
|
|
- name: Build
|
|
|
|
run: go build .
|
|
|
|
env:
|
|
|
|
GOOS: ${{ matrix.goos }}
|
|
|
|
GOARCH: ${{ matrix.goarch }}
|
|
|
|
|
2021-09-21 16:15:31 +00:00
|
|
|
test:
|
|
|
|
name: Test
|
2020-09-05 21:53:06 +00:00
|
|
|
runs-on: ${{ matrix.os }}
|
2023-06-29 03:46:41 +00:00
|
|
|
|
2019-12-06 11:22:07 +00:00
|
|
|
strategy:
|
2021-09-21 09:25:18 +00:00
|
|
|
# Fail fast is disabled because there are Go version specific features and tests
|
|
|
|
# that should be able to fail independently.
|
|
|
|
fail-fast: false
|
2019-12-06 11:22:07 +00:00
|
|
|
matrix:
|
2021-09-21 09:26:55 +00:00
|
|
|
os: [ubuntu-latest, macos-latest, windows-latest]
|
2024-06-02 09:02:28 +00:00
|
|
|
go: ["1.21", "1.22"]
|
2024-06-03 07:32:13 +00:00
|
|
|
tags: ["", "viper_finder", "viper_bind_struct"]
|
2019-12-06 11:22:07 +00:00
|
|
|
|
|
|
|
steps:
|
2023-06-29 03:46:41 +00:00
|
|
|
- name: Checkout repository
|
2024-06-13 17:11:30 +00:00
|
|
|
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
|
2023-06-03 12:59:37 +00:00
|
|
|
|
2019-12-06 11:22:07 +00:00
|
|
|
- name: Set up Go
|
2024-07-10 17:45:35 +00:00
|
|
|
uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5.0.2
|
2019-12-06 11:22:07 +00:00
|
|
|
with:
|
|
|
|
go-version: ${{ matrix.go }}
|
|
|
|
|
2021-09-21 16:15:31 +00:00
|
|
|
- name: Test
|
2023-10-07 19:35:21 +00:00
|
|
|
run: go test -race -v -tags '${{ matrix.tags }}' -shuffle=on ./...
|
2021-12-28 08:37:48 +00:00
|
|
|
if: runner.os != 'Windows'
|
|
|
|
|
|
|
|
- name: Test (without race detector)
|
2023-10-07 19:35:21 +00:00
|
|
|
run: go test -v -tags '${{ matrix.tags }}' -shuffle=on ./...
|
2021-12-28 08:37:48 +00:00
|
|
|
if: runner.os == 'Windows'
|
2021-09-21 16:15:31 +00:00
|
|
|
|
|
|
|
lint:
|
|
|
|
name: Lint
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
2023-06-29 03:46:41 +00:00
|
|
|
- name: Checkout repository
|
2024-06-13 17:11:30 +00:00
|
|
|
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
|
2023-06-03 12:59:37 +00:00
|
|
|
|
2021-09-21 16:15:31 +00:00
|
|
|
- name: Set up Go
|
2024-07-10 17:45:35 +00:00
|
|
|
uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5.0.2
|
2021-09-21 16:15:31 +00:00
|
|
|
with:
|
2024-02-15 11:03:46 +00:00
|
|
|
go-version: "1.22"
|
2021-09-21 16:15:31 +00:00
|
|
|
|
2020-05-09 09:42:39 +00:00
|
|
|
- name: Lint
|
2024-05-08 17:52:32 +00:00
|
|
|
uses: golangci/golangci-lint-action@a4f60bb28d35aeee14e6880718e0c85ff1882e64 # v6.0.1
|
2021-09-21 09:34:22 +00:00
|
|
|
with:
|
2024-06-02 09:02:28 +00:00
|
|
|
version: v1.59.0
|
2023-06-28 17:19:00 +00:00
|
|
|
|
|
|
|
dev:
|
|
|
|
name: Developer environment
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Checkout repository
|
2024-06-13 17:11:30 +00:00
|
|
|
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
|
2023-06-28 17:19:00 +00:00
|
|
|
|
|
|
|
- name: Set up Nix
|
2024-05-16 17:52:07 +00:00
|
|
|
uses: cachix/install-nix-action@ba0dd844c9180cbf77aa72a116d6fbc515d0e87b # v27
|
2023-06-28 17:19:00 +00:00
|
|
|
with:
|
|
|
|
extra_nix_config: |
|
|
|
|
access-tokens = github.com=${{ secrets.GITHUB_TOKEN }}
|
|
|
|
|
|
|
|
- name: Check
|
|
|
|
run: nix flake check --impure
|
|
|
|
|
|
|
|
- name: Dev shell
|
|
|
|
run: nix develop --impure
|
|
|
|
|
|
|
|
dependency-review:
|
|
|
|
name: Dependency review
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
if: github.event_name == 'pull_request'
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Checkout repository
|
2024-06-13 17:11:30 +00:00
|
|
|
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
|
2023-06-28 17:19:00 +00:00
|
|
|
|
|
|
|
- name: Dependency Review
|
2024-06-06 17:15:58 +00:00
|
|
|
uses: actions/dependency-review-action@72eb03d02c7872a771aacd928f3123ac62ad6d3a # v4.3.3
|