changed protoc version back #706
Workflow file for this run
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: | |
# go tests | |
gotest: | |
name: Test Backend | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install Go | |
uses: actions/setup-go@v2 | |
with: | |
go-version: 1.19 | |
- name: Checkout Repo | |
uses: actions/checkout@v2 | |
with: | |
submodules: true | |
token: ${{ secrets.SSH_TOKEN }} | |
- name: Install dependencies | |
run: make install-dependencies | |
- name: Build Protos | |
run: make build-protos | |
- name: Test | |
run: | | |
go test -race ./... | |
# TODO: include protobuf installation and compilation steps here, once we actually start | |
# writing tests that need to run on the frontend. | |
Jest: | |
name: Test Frontend | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Run Tests | |
run: | | |
cd houston | |
npm install | |
npm test |