2020-02-11 18:43:19 +00:00
|
|
|
name: staticcheck
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
2020-06-15 17:47:11 +00:00
|
|
|
- main
|
2020-02-11 18:43:19 +00:00
|
|
|
pull_request:
|
|
|
|
branches:
|
|
|
|
- '*'
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
2020-04-19 20:56:51 +00:00
|
|
|
- name: Set up Go
|
2020-02-11 18:43:19 +00:00
|
|
|
uses: actions/setup-go@v1
|
|
|
|
with:
|
2021-02-19 21:06:07 +00:00
|
|
|
go-version: 1.16
|
2020-02-11 18:43:19 +00:00
|
|
|
|
|
|
|
- name: Check out code
|
|
|
|
uses: actions/checkout@v1
|
|
|
|
|
2020-07-16 15:41:18 +00:00
|
|
|
- name: Run go vet
|
|
|
|
run: go vet ./...
|
|
|
|
|
2020-03-06 21:04:11 +00:00
|
|
|
- name: Print staticcheck version
|
|
|
|
run: go run honnef.co/go/tools/cmd/staticcheck -version
|
|
|
|
|
2020-02-11 18:43:19 +00:00
|
|
|
- name: Run staticcheck
|
2020-04-25 03:43:04 +00:00
|
|
|
run: "go run honnef.co/go/tools/cmd/staticcheck -- $(go list ./... | grep -v tempfork)"
|
2020-02-11 18:43:19 +00:00
|
|
|
|
|
|
|
- uses: k0kubun/action-slack@v2.0.0
|
|
|
|
with:
|
|
|
|
payload: |
|
|
|
|
{
|
|
|
|
"attachments": [{
|
|
|
|
"text": "${{ job.status }}: ${{ github.workflow }} <https://github.com/${{ github.repository }}/commit/${{ github.sha }}/checks|${{ env.COMMIT_DATE }} #${{ env.COMMIT_NUMBER_OF_DAY }}> " +
|
|
|
|
"(<https://github.com/${{ github.repository }}/commit/${{ github.sha }}|" + "${{ github.sha }}".substring(0, 10) + ">) " +
|
|
|
|
"of ${{ github.repository }}@" + "${{ github.ref }}".split('/').reverse()[0] + " by ${{ github.event.head_commit.committer.name }}",
|
|
|
|
"color": "danger"
|
|
|
|
}]
|
|
|
|
}
|
|
|
|
env:
|
|
|
|
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
|
|
|
|
if: failure() && github.event_name == 'push'
|