Bump google.golang.org/grpc from 1.53.0 to 1.56.3 #206
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: Run unit tests | |
on: | |
push: | |
branches: | |
- master | |
- main | |
pull_request: | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install Go | |
uses: actions/setup-go@v3 | |
with: | |
go-version: 1.18 | |
- uses: actions/checkout@v3 | |
- name: build | |
run: make build | |
- name: prepare config | |
run: bin/speechly config add --apikey APIKEY --name default --skip-online-validation | |
- name: Test | |
run: make test |