Files
.github
workflows
test.yml
api
cmd
configs
init
internal
pkg
tools
web
.gitignore
.goreleaser.yaml
LICENSE
Makefile
README.md
ReleaseNotes.md
go.mod
go.sum
gqlgen.yml
startDemo.sh
tools.go
cc-backend/.github/workflows/test.yml
2025-03-14 10:52:27 +01:00

18 lines
379 B
YAML

name: Build & Test
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Install Go
uses: actions/setup-go@v4
with:
go-version: 1.24.x
- name: Checkout code
uses: actions/checkout@v3
- name: Build, Vet & Test
run: |
go build ./...
go vet ./...
go test ./...