Skip to content

Commit 329356f

Browse files
authored
Merge branch 'master' into add-capabilities-instance
2 parents f7007fd + cc11c7d commit 329356f

File tree

2 files changed

+12
-3
lines changed

2 files changed

+12
-3
lines changed

.github/workflows/golangci-lint.yml renamed to .github/workflows/lint.yml

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,19 @@
1-
name: golangci-lint
1+
name: Lint
22
on:
33
pull_request:
44
merge_group:
5+
56
jobs:
7+
dockerlint:
8+
name: dockerfile-lint
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: actions/checkout@v4
12+
- name: dockerfile-lint
13+
run: docker build --check .
14+
615
golangci:
7-
name: lint
16+
name: golangci-lint
817
runs-on: ubuntu-latest
918
steps:
1019
- uses: actions/checkout@v4

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM golang:1.24-alpine3.21 AS builder
22

3-
ENV BUILD_IN_DOCKER true
3+
ENV BUILD_IN_DOCKER=true
44
ARG VERSION
55

66
# ca-certificates is needed to add the certificates on the next image

0 commit comments

Comments
 (0)