Merged in feature/devbox (pull request #11)

Add Devbox

* adddevbox

* cleanupdockerfile

* testscripts
This commit is contained in:
Michael McGuinness
2025-01-10 12:58:14 +00:00
parent 0ebb8a21a1
commit 6e5c7aedc8
127 changed files with 1371 additions and 811 deletions
+4 -11
View File
@@ -3,11 +3,6 @@
version: '3'
includes:
docker:
taskfile: docker.yml
internal: true
vars:
COVERAGE_FILE: "{{.OUT_DIR}}/coverage.out"
@@ -43,15 +38,13 @@ tasks:
fi
silent: true
integration:
deps:
- docker:build
cmds:
- task docker:build
- task test:integration:nobuild
integration:nocache:
deps:
- docker:build
cmds:
- go test -count=1 -v test/...
- task docker:build
- go test -count=1 -v ./test/...
integration:nobuild:
cmds:
- go test -v test/...
- go test -v ./test/...