We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c1decab commit 9d52d3fCopy full SHA for 9d52d3f
.github/workflows/backend_test.yml
@@ -20,6 +20,11 @@ jobs:
20
- name: Check out code into the Go module directory
21
uses: actions/checkout@v4
22
23
+ - name: Test that the docker image still builds successfully
24
+ run: |
25
+ export COMMIT_SHA=$(git rev-parse --short HEAD)
26
+ docker build -t testingbuild:latest --build-arg COMMIT_SHA=${COMMIT_SHA} . -f Dockerfile_backend
27
+
28
- name: Deps
29
run: go get -v ./...
30
working-directory: backend
@@ -32,4 +37,7 @@ jobs:
32
37
run: go test -v ./...
33
38
env:
34
39
GITHUB_PAT_TOKEN: ${{ secrets.TOKEN_GITHUB }}
35
- working-directory: backend
40
+ working-directory: backend
41
42
43
go.work
@@ -1,4 +1,4 @@
1
-go 1.21.5
+go 1.21.6
2
3
use (
4
./backend
0 commit comments