This repository has been archived by the owner on May 5, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 61
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add github actions, remove patch check (#105)
* Add github actions, remove patch check * Fix of ci.yml
- Loading branch information
Showing
3 changed files
with
55 additions
and
68 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
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,54 @@ | ||
name: CI | ||
|
||
on: | ||
push: | ||
branches: [ master ] | ||
pull_request: | ||
branches: [ master ] | ||
|
||
jobs: | ||
test: | ||
name: Unit Test | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Set up Go 1.x | ||
uses: actions/setup-go@v2 | ||
with: | ||
go-version: ^1.13 | ||
id: go | ||
|
||
- name: Check out code | ||
uses: actions/checkout@v2 | ||
|
||
- name: Get dependencies | ||
run: | | ||
go get -v -t -d ./... | ||
- name: Lint | ||
run: make lint | ||
|
||
- name: Build | ||
run: make go-build | ||
|
||
- name: Unit Test | ||
run: make test | ||
|
||
- name: Upload coverage | ||
run: bash <(curl -s https://codecov.io/bash) -f coverage.txt | ||
|
||
- name: Integration Test | ||
run: make integration | ||
|
||
|
||
deploy: | ||
name: CD | ||
runs-on: ubuntu-latest | ||
needs: [test] | ||
steps: | ||
- name: CD Trigger | ||
if: github.ref == 'refs/heads/master' | ||
uses: Azure/pipelines@releases/v1 | ||
with: | ||
azure-devops-project-url: 'https://dev.azure.com/TrustWallet/WatchMarket' | ||
azure-pipeline-name: 'AutomaticCD' | ||
azure-devops-token: '${{ secrets.AZURE_DEVOPS_TOKEN }}' |
This file was deleted.
Oops, something went wrong.