Skip to content

fix(backend): remove duplicate json tag in restProject struct #1

fix(backend): remove duplicate json tag in restProject struct

fix(backend): remove duplicate json tag in restProject struct #1

Workflow file for this run

name: Test Backend
on:
push:
paths:
- "backend/**"
pull_request:
paths:
- "backend/**"
jobs:
test:
runs-on: ubuntu-latest
defaults:
run:
working-directory: backend
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: "1.24"
cache-dependency-path: backend/go.sum
- run: go build ./...
- run: go test ./...
- run: go vet ./...