chore(deps): bump golang.org/x/net from 0.25.0 to 0.26.0 in /backend #459
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: Backend Unit Tests | |
on: | |
push: | |
env: | |
JWT_SECRET: ${{vars.JWT_SECRET}} | |
CORS_ALLOW_ORIGIN: ${{vars.CORS_ALLOW_ORIGIN}} | |
DB_URL: ${{vars.DB_URL}} | |
ENVIRONMENT: ${{vars.ENVIRONMENT}} | |
GET_WEEKLY_MEETINGS_JW_API: ${{vars.GET_WEEKLY_MEETINGS_JW_API}} | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Set up Go | |
uses: actions/setup-go@v3 | |
with: | |
go-version: "1.21.3" | |
- name: Run Backend Unit Tests | |
working-directory: ./backend/ | |
run: | | |
go mod download | |
go get github.com/rakyll/gotest | |
go install github.com/rakyll/gotest | |
gotest -v ./... |