Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,11 @@ jobs:
go-version: ${{ env.GO_VERSION }}
cache: true

- name: Install golangci-lint
run: go install github.com/golangci/golangci-lint/cmd/golangci-lint@latest

- name: Run golangci-lint
uses: golangci/golangci-lint-action@v4
with:
version: latest
args: --timeout=5m
run: golangci-lint run --timeout=5m

# Test job - runs unit and integration tests with Go version matrix
test:
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ test-integration:
test-e2e:
@$(call print_status,"Running E2E tests...")
@if [ -d "test/e2e" ]; then \
go test ./test/e2e/... -v -timeout 10m; \
go test -tags=e2e ./test/e2e/... -v -timeout 10m; \
else \
$(call print_warning,"E2E tests not yet implemented (test/e2e/ does not exist)"); \
fi
Expand Down
Loading
Loading