Skip to content

Update README.md

Update README.md #110

Workflow file for this run

name: Backend CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.24
- name: Install dependencies
run: go mod tidy
- name: Run tests
run: go test -v ./test/...