We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 73859d2 commit 990917dCopy full SHA for 990917d
.github/workflows/ci.yaml
@@ -26,6 +26,18 @@ jobs:
26
- name: build
27
run: |
28
go build -v ./...
29
+ buildFips:
30
+ name: buildFips
31
+ runs-on: ubuntu-latest
32
+ steps:
33
+ - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
34
+ - uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # v5.3.0
35
+ with:
36
+ go-version-file: "go.mod"
37
+ - name: build
38
+ run: |
39
+ go build -v -tags "disable_spire,disable_tls" ./cmd/entrypoint
40
+ echo "Build finished with exit code: $?"
41
linting:
42
needs: [build]
43
name: lint
0 commit comments