trustwallet-assets/.github/workflows/check.yml
Daniel d547fb1473
Move CI scripts logic from assets-go-libs (#16680)
* Move CI scripts logic from assets-go-libs

* Add Makefile, .golangci.yml and lint jobs to workflow

* Fix
2021-12-20 00:39:53 +03:00

26 lines
513 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: go run ./cmd/main.go --config=./.github/assets.config.yaml --script=checker
# - name: Unit Test
# run: make test
# - name: Lint
# run: make lint