Add new Inbox routes #250
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
on: [push, pull_request] | |
name: Test and Build | |
jobs: | |
test: | |
strategy: | |
matrix: | |
os: [ubuntu-latest] | |
go-version: [1.17.x] | |
fail-fast: false | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Install Go | |
uses: actions/setup-go@v2 | |
with: | |
go-version: ${{ matrix.go-version }} | |
- name: Verify versions | |
run: go version | |
- name: Cache build artifacts | |
id: cache-go | |
uses: actions/cache@v2 | |
with: | |
path: | | |
~/go/pkg/mod | |
${{ env.GOROOT }} | |
key: ${{ runner.os }}-go-${{ matrix.go-version }} | |
- name: Install dependencies | |
run: go get | |
working-directory: ./crisp | |
- name: Build code | |
run: go build | |
working-directory: ./crisp | |
- name: Test code | |
run: go test | |
working-directory: ./crisp |