move make proto
& make proto-lint
commands to root folder (#265)
#2
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: ci_integration | |
on: | |
push: | |
paths: | |
- "server/**" | |
branches: [master] | |
pull_request: | |
branches: | |
- master | |
paths: | |
- "server/**" | |
jobs: | |
test: | |
name: integration tests | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: ./server | |
steps: | |
- uses: actions/setup-go@v3 | |
with: | |
go-version: ">1.17.2" | |
- uses: actions/checkout@v3 | |
- run: go get -v -t -d ./... | |
- name: Run Nigiri | |
uses: vulpemventures/nigiri-github-action@v1 | |
- name: integration testing | |
run: make integrationtest | |