Skip to content

Release 0.0.5

Release 0.0.5 #15

Workflow file for this run

name: Test
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test-backend:
name: Test Backend (Go)
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: '1.24'
- name: Install dependencies
run: go mod download
working-directory: backend
- name: Run tests
run: go test -v -race -coverprofile=coverage.out ./...
working-directory: backend
- name: Upload coverage
uses: codecov/codecov-action@v4
with:
files: backend/coverage.out
flags: backend
continue-on-error: true