-
Notifications
You must be signed in to change notification settings - Fork 178
53 lines (48 loc) · 1.12 KB
/
ci-go.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
name: ci-go
on:
push:
tags:
- v*
branches:
- master
pull_request:
permissions:
contents: read
jobs:
ci-from-docker:
runs-on: ubuntu-latest
container:
image: mcr.microsoft.com/oss/go/microsoft/golang:1.23-fips-cbl-mariner2.0
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install Go runtime deps
run: |
make install-go-tools
- name: Build all
run: |
make build-all
- name: Run unit tests
run: |
make unit-test-go
vendor-check:
runs-on: ubuntu-latest
container:
image: mcr.microsoft.com/oss/go/microsoft/golang:1.23-fips-cbl-mariner2.0
steps:
- name: Checkout repository
uses: actions/checkout@v4
- run: |
make go-verify
hack/ci-utils/isClean.sh
generate-check:
runs-on: ubuntu-latest
container:
image: mcr.microsoft.com/oss/go/microsoft/golang:1.23-fips-cbl-mariner2.0
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Run make generate
run: |
make generate
hack/ci-utils/isClean.sh