Skip to content

feat: add CronCreate, CronList, and CronDelete scheduled-task tools #11812

feat: add CronCreate, CronList, and CronDelete scheduled-task tools

feat: add CronCreate, CronList, and CronDelete scheduled-task tools #11812

Workflow file for this run

name: build
on:
push:
branches: [main]
pull_request:
permissions:
contents: read
concurrency:
group: build-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
build:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
persist-credentials: false
- uses: actions/setup-go@b7ad1dad31e06c5925ef5d2fc7ad053ef454303e # v7.0.0
with:
go-version-file: go.mod
- run: go mod tidy
- run: git diff --exit-code
- run: go build -race ./...
- run: go test -race -failfast ./...