Added TaskIngestionSpecOptions functions to define druid reindexing task #83
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Go Build | |
on: | |
push: | |
branches: [master, "rel-[0-9]+.[0-9]+.[0-9]+"] | |
pull_request: | |
paths: | |
- ".github/workflows/go-build.yaml" | |
- "**.go" | |
- "go.mod" | |
- "go.sum" | |
- "gen/**" | |
jobs: | |
build: | |
name: build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Go environment | |
uses: actions/setup-go@v3 | |
with: | |
go-version-file: go.mod | |
- id: go-cache-paths | |
run: | | |
echo "::set-output name=go-build::$(go env GOCACHE)" | |
echo "::set-output name=go-mod::$(go env GOMODCACHE)" | |
- name: Go Mod Cache | |
id: go-mod-cache | |
uses: actions/cache@v3 | |
with: | |
path: ${{ steps.go-cache-paths.outputs.go-mod }} | |
key: ${{ runner.os }}-gomod-gomod-${{ hashFiles('**/go.sum') }} | |
- name: Build | |
run: go build -v ./... | |
- name: Test | |
uses: magefile/mage-action@v3 | |
with: | |
version: latest | |
args: test | |