-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into 2102-dnsrewrite
- Loading branch information
Showing
4 changed files
with
98 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
name: golangci-lint | ||
on: | ||
push: | ||
|
||
jobs: | ||
|
||
golangci: | ||
runs-on: | ||
- ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
- name: golangci-lint | ||
uses: golangci/[email protected] | ||
with: | ||
# This field is required. Dont set the patch version to always use | ||
# the latest patch version. | ||
version: v1.32 | ||
|
||
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: repo, message, commit, author, job | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
name: Create release | ||
|
||
on: | ||
push: | ||
|
||
jobs: | ||
tests: | ||
runs-on: | ||
- ubuntu-latest | ||
env: | ||
GO111MODULE: "on" | ||
|
||
steps: | ||
- uses: actions/checkout@master | ||
|
||
- uses: actions/setup-go@v1 | ||
with: | ||
go-version: 1.14.x | ||
|
||
- name: tests | ||
run: go test -mod=vendor -race -v -bench="." -coverprofile="coverage.txt" -covermode=atomic ./... | ||
|
||
- name: Upload coverage | ||
uses: codecov/codecov-action@v1 | ||
with: | ||
token: ${{ secrets.CODECOV_TOKEN }} | ||
file: ./coverage.txt | ||
|
||
notify: | ||
needs: | ||
- tests | ||
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: repo, message, commit, author, job | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters