2021-06-26 02:17:01 +00:00
|
|
|
name: Go
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
2022-04-04 02:53:03 +00:00
|
|
|
branches: [ main ]
|
2021-06-26 02:17:01 +00:00
|
|
|
pull_request:
|
2022-04-04 02:53:03 +00:00
|
|
|
branches: [ main ]
|
2021-06-26 02:17:01 +00:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
|
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
2023-03-22 14:17:41 +00:00
|
|
|
strategy:
|
|
|
|
matrix:
|
2023-10-07 14:00:42 +00:00
|
|
|
go: ['1.18', '1.19', '1.20', '1.21']
|
2021-06-26 02:17:01 +00:00
|
|
|
steps:
|
2022-04-04 02:47:42 +00:00
|
|
|
- uses: actions/checkout@v3
|
2021-06-26 02:17:01 +00:00
|
|
|
|
|
|
|
- name: Set up Go
|
2022-04-04 02:47:42 +00:00
|
|
|
uses: actions/setup-go@v3
|
2021-06-26 02:17:01 +00:00
|
|
|
with:
|
2023-03-22 14:17:41 +00:00
|
|
|
go-version: ${{ matrix.go }}
|
2021-06-26 02:17:01 +00:00
|
|
|
|
|
|
|
- name: Build
|
2023-10-24 01:45:19 +00:00
|
|
|
run: make build
|
2021-06-26 02:17:01 +00:00
|
|
|
|
2023-10-24 01:45:19 +00:00
|
|
|
- name: Validation
|
2021-06-26 02:17:01 +00:00
|
|
|
run: make validation
|
|
|
|
|
|
|
|
- name: Build.Arches
|
|
|
|
run: make build.arches
|
2022-04-04 02:47:42 +00:00
|
|
|
|