diff --git a/.github/workflows/build-and-test.yml b/.github/workflows/build-and-test.yml index b0c4e4903b0ab..28514dc3a250f 100644 --- a/.github/workflows/build-and-test.yml +++ b/.github/workflows/build-and-test.yml @@ -75,9 +75,9 @@ jobs: path: /home/runner/.cache/go-build key: go-build-lint-${{ runner.os }}-${{ hashFiles('**/go.mod', '**/go.sum') }} - name: Lint - run: make -j2 golint + run: make -j4 golint - name: Checks - run: make -j4 checklicense misspell checkdoc impi porto + run: make -j4 checkdoc porto - name: Codegem run: | make generate diff --git a/Makefile.Common b/Makefile.Common index a3454c62339f8..235e7fbc84fe6 100644 --- a/Makefile.Common +++ b/Makefile.Common @@ -91,7 +91,7 @@ fmt: goimports -w -local github.com/open-telemetry/opentelemetry-collector-contrib ./ .PHONY: lint -lint: +lint: checklicense impi misspell $(LINT) run --allow-parallel-runners .PHONY: porto