Skip to content

Fix middleware to allow frontend to not include role when calling delete membership api endpoint #322

Fix middleware to allow frontend to not include role when calling delete membership api endpoint

Fix middleware to allow frontend to not include role when calling delete membership api endpoint #322

Workflow file for this run

name: Backend Tests
on:
push:
branches: [main]
pull_request:
paths:
- "backend/**"
- ".github/workflows/backend-tests.yml"
jobs:
go-audit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: "1.21.6"
- name: Verify dependencies
run: go mod verify
working-directory: backend
- name: Build
run: go build -v ./...
working-directory: backend
- name: Test
run: go test ./...
working-directory: backend