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
|
2023-09-04 17:12:00 +00:00
|
|
|
uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4.0.0
|
2023-06-03 12:59:37 +00:00
|
|
|
|
2022-11-03 17:16:10 +00:00
|
|
|
- name: Set up Go
|
2023-09-07 10:27:53 +00:00
|
|
|
uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe # v4.1.0
|
2022-11-03 17:16:10 +00:00
|
|
|
with:
|
2023-02-05 17:14:57 +00:00
|
|
|
go-version: '1.20'
|
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]
|
2023-06-29 03:46:41 +00:00
|
|
|
go: ['1.18', '1.19', '1.20']
|
2019-12-06 11:22:07 +00:00
|
|
|
|
|
|
|
steps:
|
2023-06-29 03:46:41 +00:00
|
|
|
- name: Checkout repository
|
2023-09-04 17:12:00 +00:00
|
|
|
uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4.0.0
|
2023-06-03 12:59:37 +00:00
|
|
|
|
2019-12-06 11:22:07 +00:00
|
|
|
- name: Set up Go
|
2023-09-07 10:27:53 +00:00
|
|
|
uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe # v4.1.0
|
2019-12-06 11:22:07 +00:00
|
|
|
with:
|
|
|
|
go-version: ${{ matrix.go }}
|
|
|
|
|
2021-09-21 16:15:31 +00:00
|
|
|
- name: Test
|
2023-01-19 14:16:19 +00:00
|
|
|
run: go test -race -v ./...
|
2021-12-28 08:37:48 +00:00
|
|
|
if: runner.os != 'Windows'
|
|
|
|
|
|
|
|
- name: Test (without race detector)
|
2023-01-19 14:16:19 +00:00
|
|
|
run: go test -v ./...
|
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
|
2023-09-04 17:12:00 +00:00
|
|
|
uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4.0.0
|
2023-06-03 12:59:37 +00:00
|
|
|
|
2021-09-21 16:15:31 +00:00
|
|
|
- name: Set up Go
|
2023-09-07 10:27:53 +00:00
|
|
|
uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe # v4.1.0
|
2021-09-21 16:15:31 +00:00
|
|
|
with:
|
2023-02-05 17:14:57 +00:00
|
|
|
go-version: '1.20'
|
2021-09-21 16:15:31 +00:00
|
|
|
|
2020-05-09 09:42:39 +00:00
|
|
|
- name: Lint
|
2023-08-15 17:57:06 +00:00
|
|
|
uses: golangci/golangci-lint-action@3a919529898de77ec3da873e3063ca4b10e7f5cc # v3.7.0
|
2021-09-21 09:34:22 +00:00
|
|
|
with:
|
2023-06-29 03:59:29 +00:00
|
|
|
version: v1.53.3
|
2023-06-28 17:19:00 +00:00
|
|
|
|
|
|
|
dev:
|
|
|
|
name: Developer environment
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Checkout repository
|
2023-09-04 17:12:00 +00:00
|
|
|
uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4.0.0
|
2023-06-28 17:19:00 +00:00
|
|
|
|
|
|
|
- name: Set up Nix
|
2023-06-29 03:37:54 +00:00
|
|
|
uses: cachix/install-nix-action@6ed004b9ccb68dbc28e7c85bee15fa93dbd214ac # v22
|
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
|
2023-09-04 17:12:00 +00:00
|
|
|
uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4.0.0
|
2023-06-28 17:19:00 +00:00
|
|
|
|
|
|
|
- name: Dependency Review
|
2023-08-15 17:57:09 +00:00
|
|
|
uses: actions/dependency-review-action@f6fff72a3217f580d5afd49a46826795305b63c7 # v3.0.8
|