Skip to content

Generic Create API

Generic Create API #59

Workflow file for this run

name: ci-go-tests
on:
pull_request:
types:
- opened
- synchronize
- reopened
- ready_for_review
paths:
- '**/*.go'
- '**/go.mod'
permissions:
contents: read
actions: write
jobs:
ci-go-tests:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
cache-dependency-path: go.sum
- name: golangci-lint
uses: golangci/[email protected]
with:
args: --timeout=10m
- name: Run Unit Tests
run: go test -race -v ./...