2019-12-06 14:22:07 +03:00
|
|
|
name: CI
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
2023-06-29 06:46:41 +03:00
|
|
|
branches: [master]
|
2019-12-06 14:22:07 +03:00
|
|
|
pull_request:
|
|
|
|
|
|
|
|
jobs:
|
2022-11-03 20:16:10 +03:00
|
|
|
build:
|
|
|
|
name: Build
|
|
|
|
runs-on: ubuntu-latest
|
2023-06-29 06:46:41 +03:00
|
|
|
|
2022-11-03 20:16:10 +03:00
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
|
|
|
include:
|
|
|
|
- goos: js
|
|
|
|
goarch: wasm
|
|
|
|
- goos: aix
|
|
|
|
goarch: ppc64
|
|
|
|
|
|
|
|
steps:
|
2023-06-29 06:46:41 +03:00
|
|
|
- name: Checkout repository
|
2024-06-13 20:11:30 +03:00
|
|
|
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
|
2023-06-03 15:59:37 +03:00
|
|
|
|
2022-11-03 20:16:10 +03:00
|
|
|
- name: Set up Go
|
2024-05-02 20:26:29 +03:00
|
|
|
uses: actions/setup-go@cdcb36043654635271a94b9a6d1392de5bb323a7 # v5.0.1
|
2022-11-03 20:16:10 +03:00
|
|
|
with:
|
2024-03-25 15:22:26 +03:00
|
|
|
go-version: "1.22"
|
2022-11-03 20:16:10 +03:00
|
|
|
|
|
|
|
- name: Build
|
|
|
|
run: go build .
|
|
|
|
env:
|
|
|
|
GOOS: ${{ matrix.goos }}
|
|
|
|
GOARCH: ${{ matrix.goarch }}
|
|
|
|
|
2021-09-21 19:15:31 +03:00
|
|
|
test:
|
|
|
|
name: Test
|
2020-09-06 00:53:06 +03:00
|
|
|
runs-on: ${{ matrix.os }}
|
2023-06-29 06:46:41 +03:00
|
|
|
|
2019-12-06 14:22:07 +03:00
|
|
|
strategy:
|
2021-09-21 12:25:18 +03: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 14:22:07 +03:00
|
|
|
matrix:
|
2021-09-21 12:26:55 +03:00
|
|
|
os: [ubuntu-latest, macos-latest, windows-latest]
|
2024-06-02 12:02:28 +03:00
|
|
|
go: ["1.21", "1.22"]
|
2024-06-03 10:32:13 +03:00
|
|
|
tags: ["", "viper_finder", "viper_bind_struct"]
|
2019-12-06 14:22:07 +03:00
|
|
|
|
|
|
|
steps:
|
2023-06-29 06:46:41 +03:00
|
|
|
- name: Checkout repository
|
2024-06-13 20:11:30 +03:00
|
|
|
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
|
2023-06-03 15:59:37 +03:00
|
|
|
|
2019-12-06 14:22:07 +03:00
|
|
|
- name: Set up Go
|
2024-05-02 20:26:29 +03:00
|
|
|
uses: actions/setup-go@cdcb36043654635271a94b9a6d1392de5bb323a7 # v5.0.1
|
2019-12-06 14:22:07 +03:00
|
|
|
with:
|
|
|
|
go-version: ${{ matrix.go }}
|
|
|
|
|
2021-09-21 19:15:31 +03:00
|
|
|
- name: Test
|
2023-10-07 22:35:21 +03:00
|
|
|
run: go test -race -v -tags '${{ matrix.tags }}' -shuffle=on ./...
|
2021-12-28 11:37:48 +03:00
|
|
|
if: runner.os != 'Windows'
|
|
|
|
|
|
|
|
- name: Test (without race detector)
|
2023-10-07 22:35:21 +03:00
|
|
|
run: go test -v -tags '${{ matrix.tags }}' -shuffle=on ./...
|
2021-12-28 11:37:48 +03:00
|
|
|
if: runner.os == 'Windows'
|
2021-09-21 19:15:31 +03:00
|
|
|
|
|
|
|
lint:
|
|
|
|
name: Lint
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
2023-06-29 06:46:41 +03:00
|
|
|
- name: Checkout repository
|
2024-06-13 20:11:30 +03:00
|
|
|
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
|
2023-06-03 15:59:37 +03:00
|
|
|
|
2021-09-21 19:15:31 +03:00
|
|
|
- name: Set up Go
|
2024-05-02 20:26:29 +03:00
|
|
|
uses: actions/setup-go@cdcb36043654635271a94b9a6d1392de5bb323a7 # v5.0.1
|
2021-09-21 19:15:31 +03:00
|
|
|
with:
|
2024-02-15 14:03:46 +03:00
|
|
|
go-version: "1.22"
|
2021-09-21 19:15:31 +03:00
|
|
|
|
2020-05-09 12:42:39 +03:00
|
|
|
- name: Lint
|
2024-05-08 20:52:32 +03:00
|
|
|
uses: golangci/golangci-lint-action@a4f60bb28d35aeee14e6880718e0c85ff1882e64 # v6.0.1
|
2021-09-21 12:34:22 +03:00
|
|
|
with:
|
2024-06-02 12:02:28 +03:00
|
|
|
version: v1.59.0
|
2023-06-28 20:19:00 +03:00
|
|
|
|
|
|
|
dev:
|
|
|
|
name: Developer environment
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Checkout repository
|
2024-06-13 20:11:30 +03:00
|
|
|
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
|
2023-06-28 20:19:00 +03:00
|
|
|
|
|
|
|
- name: Set up Nix
|
2024-05-16 20:52:07 +03:00
|
|
|
uses: cachix/install-nix-action@ba0dd844c9180cbf77aa72a116d6fbc515d0e87b # v27
|
2023-06-28 20:19:00 +03: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 20:11:30 +03:00
|
|
|
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
|
2023-06-28 20:19:00 +03:00
|
|
|
|
|
|
|
- name: Dependency Review
|
2024-06-06 20:15:58 +03:00
|
|
|
uses: actions/dependency-review-action@72eb03d02c7872a771aacd928f3123ac62ad6d3a # v4.3.3
|