Skip to content

feat: KickWatch MVP — Go backend + iOS app #8

feat: KickWatch MVP — Go backend + iOS app

feat: KickWatch MVP — Go backend + iOS app #8

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 ./...