Skip to content

chore(deps): bump golang.org/x/crypto from 0.14.0 to 0.31.0 in /server #3810

chore(deps): bump golang.org/x/crypto from 0.14.0 to 0.31.0 in /server

chore(deps): bump golang.org/x/crypto from 0.14.0 to 0.31.0 in /server #3810

Workflow file for this run

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