Add logo for token 0x141990571649e72969218cbEc0244E1049261609 #33408
This file contains hidden or 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
| name: Check | |
| on: | |
| push: | |
| branches: | |
| - master | |
| pull_request: | |
| branches: | |
| - master | |
| workflow_dispatch: | |
| jobs: | |
| check: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Set up Go | |
| uses: actions/setup-go@v4 | |
| with: | |
| go-version: 1.18 | |
| - name: Check out code | |
| uses: actions/checkout@v3 | |
| - name: Run check | |
| run: make check | |
| - name: Unit Test | |
| run: make test | |
| - name: Lint | |
| run: make lint |