Skip to content

Add basic cosmosDb injected handler test #4

Add basic cosmosDb injected handler test

Add basic cosmosDb injected handler test #4

Workflow file for this run

name: Backend CI
on:
push:
paths:
- 'backend/**'
pull_request:
paths:
- 'backend/**'
jobs:
build:
runs-on: ubuntu-latest
defaults:
run:
working-directory: backend
strategy:
matrix:
go-version: [ '1.22.x' ]
steps:
- uses: actions/checkout@v4
- name: Setup Go ${{ matrix.go-version }}
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go-version }}
- name: Install dependencies
run: go get .
- name: Build
run: go build -v ./...
- name: Test with the Go CLI
run: go test