Add service metadata endpoints (#69) #282
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: tests | |
on: | |
push: | |
pull_request: | |
jobs: | |
tests: | |
runs-on: ubuntu-latest | |
name: CI tests | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Import environment variables from file | |
run: cat ".github/env" >> $GITHUB_ENV | |
- name: Setup Go | |
uses: actions/setup-go@v2 | |
with: | |
go-version: '${{ env.golang-version }}' | |
- name: Run code format check | |
run: make format | |
- name: Run unit tests | |
run: make test | |
- name: Run e2e tests | |
run: make test-e2e |