summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/ci.yml14
-rw-r--r--.github/workflows/lint.yml23
2 files changed, 23 insertions, 14 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 7233365..476b908 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -148,20 +148,6 @@ jobs:
env:
SSH_KEY: ${{ secrets.S390X_SSH_KEY }}
- # From https://github.com/reviewdog/action-golangci-lint
- golangci-lint:
- name: runner / golangci-lint
- runs-on: ubuntu-latest
- steps:
- - name: Checkout code into the Go module directory
- uses: actions/checkout@v2
-
- - name: Run golangci-lint
- uses: reviewdog/action-golangci-lint@v1
- # uses: docker://reviewdog/action-golangci-lint:v1 # pre-build docker image
- with:
- github_token: ${{ secrets.github_token }}
-
goreleaser-check:
runs-on: ubuntu-latest
steps:
diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml
new file mode 100644
index 0000000..ef69150
--- /dev/null
+++ b/.github/workflows/lint.yml
@@ -0,0 +1,23 @@
+name: Lint
+
+on:
+ push:
+ branches:
+ - master
+ pull_request:
+ branches:
+ - master
+
+jobs:
+ # From https://github.com/golangci/golangci-lint-action
+ golangci:
+ name: lint
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@v2
+ - name: golangci-lint
+ uses: golangci/golangci-lint-action@v2
+ with:
+ version: v1.31
+ # Optional: show only new issues if it's a pull request. The default value is `false`.
+ # only-new-issues: true