trustwallet-assets/.github/workflows/check.yml
Ivan 7d0393bc21
Fix update-auto command & run it (#20634)
* Fix update-auto command & run it

* Upgrade go

* Fix log URI

* Add binance chain name mapping

* Update the dependency
2022-05-26 16:55:41 +02:00

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.18
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