Skip to content

feat(conf): test enhanced #11

feat(conf): test enhanced

feat(conf): test enhanced #11

Workflow file for this run

name: Test p2d
on:
push:
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.23'
check-latest: true
cache: true
- name: Build
run: go build -v ./...
- name: Test
run: go test -race -v ./...