Skip to content

Commit

Permalink
Fixing annoying container issue
Browse files Browse the repository at this point in the history
  • Loading branch information
Ardem committed Sep 30, 2024
1 parent e8a3880 commit e266fa2
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,10 +53,10 @@ jobs:
go-version: '1.21'

- name: Build integrations
run: go build -C backend/integrations
run: go build -C backend/integrations -buildvcs=false

- name: Build taskrunner
run: go build -C processor/taskrunner
run: go build -C processor/taskrunner -buildvcs=false

- name: Test taskrunner
run: go test -C processor/taskrunner ./tests/...
run: go test -C processor/taskrunner ./tests/... -buildvcs=false
4 changes: 2 additions & 2 deletions .github/workflows/golangci-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,10 +60,10 @@ jobs:
with:
version: v1.59
working-directory: ./backend/integrations
args: --timeout=5m
args: --timeout=5m -buildvcs=false
- name: golangci-lint for taskrunner
uses: golangci/golangci-lint-action@v6
with:
version: v1.59
working-directory: ./processor/taskrunner
args: --timeout=5m
args: --timeout=5m -buildvcs=false

0 comments on commit e266fa2

Please sign in to comment.