Skip to content

Commit ecddd5e

Browse files
committed
fix indentation
1 parent ceac281 commit ecddd5e

File tree

1 file changed

+6
-11
lines changed

1 file changed

+6
-11
lines changed

.github/workflows/codeql.yml

Lines changed: 6 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -32,22 +32,18 @@ jobs:
3232
steps:
3333
- name: Checkout repository
3434
uses: actions/checkout@v6
35-
3635
- name: Set up Go
3736
uses: actions/setup-go@v5
3837
with:
3938
go-version: "1.25.0"
40-
4139
# Initializes the CodeQL tools for scanning.
4240
- name: Initialize CodeQL
4341
uses: github/codeql-action/init@v4
4442
with:
4543
languages: go
4644
build-mode: manual
47-
4845
- name: Install Taskfile support
4946
uses: arduino/setup-task@v2
50-
5147
- name: Build (CodeQL-instrumented)
5248
shell: bash
5349
env:
@@ -59,13 +55,12 @@ jobs:
5955
6056
GO_VERSIONS="1.19" go test -v ./internal/test/compilecheck -run '^TestCompileCheck/golang:1.19$'
6157
62-
GOOS=linux GOARCH=386 go build ./...
63-
GOOS=linux GOARCH=arm go build ./...
64-
GOOS=linux GOARCH=arm64 go build ./...
65-
GOOS=linux GOARCH=amd64 go build ./...
66-
GOOS=linux GOARCH=ppc64le go build ./...
67-
GOOS=linux GOARCH=s390x go build ./...
68-
58+
GOOS=linux GOARCH=386 go build ./...
59+
GOOS=linux GOARCH=arm go build ./...
60+
GOOS=linux GOARCH=arm64 go build ./...
61+
GOOS=linux GOARCH=amd64 go build ./...
62+
GOOS=linux GOARCH=ppc64le go build ./...
63+
GOOS=linux GOARCH=s390x go build ./...
6964
- name: Perform CodeQL Analysis
7065
uses: github/codeql-action/analyze@v4
7166
with:

0 commit comments

Comments
 (0)