mirror of
https://github.com/Instadapp/trustwallet-assets.git
synced 2024-07-29 22:37:31 +00:00
2794a27cfb
* Add command for adding asset template * Fix explorer links for terra
26 lines
440 B
YAML
26 lines
440 B
YAML
name: Check
|
|
on:
|
|
push:
|
|
branches: [ master ]
|
|
workflow_dispatch:
|
|
jobs:
|
|
check:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Set up Go
|
|
uses: actions/setup-go@v2
|
|
with:
|
|
go-version: 1.17
|
|
id: go
|
|
|
|
- name: Check out code
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Run check
|
|
run: make check
|
|
|
|
- name: Unit Test
|
|
run: make test
|
|
|
|
- name: Lint
|
|
run: make lint |