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.
2 parents f7007fd + cc11c7d commit 329356fCopy full SHA for 329356f
.github/workflows/golangci-lint.yml renamed to .github/workflows/lint.yml
@@ -1,10 +1,19 @@
1
-name: golangci-lint
+name: Lint
2
on:
3
pull_request:
4
merge_group:
5
+
6
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
15
golangci:
- name: lint
16
+ name: golangci-lint
17
runs-on: ubuntu-latest
18
steps:
19
- uses: actions/checkout@v4
Dockerfile
@@ -1,6 +1,6 @@
FROM golang:1.24-alpine3.21 AS builder
-ENV BUILD_IN_DOCKER true
+ENV BUILD_IN_DOCKER=true
ARG VERSION
# ca-certificates is needed to add the certificates on the next image
0 commit comments