Bump deps #183
Workflow file for this run
This file contains 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: Go | |
on: | |
push: | |
branches: [master] | |
pull_request: | |
branches: [master] | |
jobs: | |
integration: | |
name: Integration Tests | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set up Go 1.17.x | |
uses: actions/setup-go@v2 | |
with: | |
go-version: ^1.17 | |
id: go | |
- name: Check out code into the Go module directory | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
# Check out pull request's HEAD commit instead of the merge commit to | |
# work-around an issue where wrong a commit is being checked out. | |
# For more details, see: | |
# https://github.com/actions/checkout/issues/299. | |
# ref: ${{ github.event.pull_request.head.sha }} | |
- name: Get dependencies | |
run: go get -v -t -d ./... | |
- name: Run Nigiri | |
uses: vulpemventures/nigiri-github-action@v1 | |
- name: Test | |
run: make test |