chore(deps): bump lodash and globule in /wallet/pkgs/alan #5482
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: Tests | |
| # Tests runs unit tests | |
| # This workflow is run on pushed to [develop* master*] and every Pull Requeset where a .go, .mod, .sum have been changed | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| go-arch: ["amd64", "arm", "arm64"] | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Set up Go | |
| uses: actions/setup-go@v2.1.3 | |
| with: | |
| go-version: 1.18 | |
| - name: Build | |
| run: GOARCH=${{matrix.go-arch}} make build | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Set up Go | |
| uses: actions/setup-go@v2.1.3 | |
| with: | |
| go-version: 1.18 | |
| - name: tests | |
| run: make test |