chore(deps): bump golang.org/x/crypto from 0.14.0 to 0.31.0 in /server #3810
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: Backend Build and Test | |
on: | |
pull_request: | |
push: | |
branches: [master] | |
# paths: | |
# - "server/**" # Only run if only a backend code has changed | |
jobs: | |
backend-build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/[email protected] | |
- uses: actions/setup-go@v4 | |
with: | |
go-version: 1.18 | |
- name: build binary | |
working-directory: ./server | |
run: make build | |
backend-test: | |
needs: backend-build | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/[email protected] | |
- uses: actions/setup-go@v4 | |
with: | |
go-version: 1.18 | |
- name: run unit tests | |
working-directory: ./server | |
run: | | |
make test |