trustwallet-assets/.github/workflows/fix-dryrun.yml
Daniel 2794a27cfb
Add command for adding asset template (#17338)
* Add command for adding asset template

* Fix explorer links for terra
2022-01-14 17:02:39 +03:00

29 lines
527 B
YAML

name: Fix (Dry run)
on:
pull_request:
branches: master
jobs:
fix-dryrun:
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 fix
run: make fix
- name: Show fix result (diff)
run: |
git config core.ignorecase false
git status
git diff
- name: Run check
run: make check