Skip to content

Changed: add possibility to set timeout, dial and transport #33

Changed: add possibility to set timeout, dial and transport

Changed: add possibility to set timeout, dial and transport #33

Workflow file for this run

name: golangci-lint
'env':
'GO_VERSION': '1.19'
'on':
'push':
'tags':
- 'v*'
'branches':
- '*'
'pull_request':
jobs:
golangci:
runs-on:
${{ matrix.os }}
strategy:
matrix:
os:
- ubuntu-latest
- macos-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v3
with:
go-version: '${{ env.GO_VERSION }}'
- name: golangci-lint
uses: golangci/golangci-lint-action@v3
with:
# This field is required. Dont set the patch version to always use
# the latest patch version.
version: v1.52.2
notify:
needs:
- golangci
# Secrets are not passed to workflows that are triggered by a pull request
# from a fork.
#
# Use always() to signal to the runner that this job must run even if the
# previous ones failed.
if:
${{ always() &&
(
github.event_name == 'push' ||
github.event.pull_request.head.repo.full_name == github.repository
)
}}
runs-on: ubuntu-latest
steps:
- name: Conclusion
uses: technote-space/workflow-conclusion-action@v1
- name: Send Slack notif
uses: 8398a7/action-slack@v3
with:
status: ${{ env.WORKFLOW_CONCLUSION }}
fields: workflow, repo, message, commit, author, eventName, ref
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}