We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cbd1ecc commit d55ea34Copy full SHA for d55ea34
.dockerignore
@@ -2,4 +2,5 @@
2
.vscode
3
.env
4
.github
5
+build
6
README.md
.github/workflows/deploy.yaml
@@ -27,7 +27,7 @@ jobs:
27
- name: Check formatting
28
run: if [ "$(gofmt -s -l . | wc -l)" -gt 0 ]; then echo "Code is not formatted. Run 'go fmt ./...'"; exit 1; fi
29
- name: Build check
30
- run: go build -v ./src/...
+ run: GOOS=linux go build -v -o build/test_firewall ./src/main.go
31
build-and-push:
32
name: Build and push image
33
needs: check
.gitignore
@@ -1,3 +1,4 @@
1
.idea
0 commit comments