Update ocean protos and docker compose (#748) #182
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: | |
- v1 | |
jobs: | |
integration: | |
name: Integration Tests | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Setup Go 1.x | |
uses: actions/setup-go@v3 | |
with: | |
go-version: '>=1.17.2' | |
- name: Run Nigiri | |
uses: vulpemventures/nigiri-github-action@v1 | |
- name: Get dependencies | |
run: go get -v -t -d ./... | |
- name: Run Intergration Tests | |
run: make integrationtest |