Skip to content

Commit

Permalink
[-] Fix CI setting for pull request (#64)
Browse files Browse the repository at this point in the history
  • Loading branch information
evalphobia authored Jun 26, 2020
1 parent b583f23 commit dfd9107
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test_lint.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: lint

on: [push]
on: [push, pull_request]

jobs:
lint:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test_mod_tidy.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: tidy

on: [push]
on: [push, pull_request]

jobs:
tidy:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test_test.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: test

on: [push]
on: [push, pull_request]

jobs:
test:
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ init:
go mod download

lint:
@type golangci-lint > /dev/null || go get -u github.com/golangci/golangci-lint/cmd/golangci-lint
@type golangci-lint > /dev/null || go get github.com/golangci/golangci-lint/cmd/golangci-lint@v1.27.0
golangci-lint $(LINT_OPT) run ./...

test-coverage: __setup_test
Expand Down

0 comments on commit dfd9107

Please sign in to comment.