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
|
|
|
|
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:
|
2022-04-04 02:47:42 +00:00
|
|
|
go-version: 1.17
|
2021-06-26 02:17:01 +00:00
|
|
|
|
|
|
|
- name: Build
|
|
|
|
run: make
|
|
|
|
|
|
|
|
- name: Test
|
|
|
|
run: make validation
|
|
|
|
|
|
|
|
- name: Build.Arches
|
|
|
|
run: make build.arches
|
2022-04-04 02:47:42 +00:00
|
|
|
|