Skip to content

shovel: add AND based filtering via filter_agg #877

shovel: add AND based filtering via filter_agg

shovel: add AND based filtering via filter_agg #877

Workflow file for this run

name: go
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
name: go test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: set up Go
uses: actions/setup-go@v3
with:
go-version: "1.21"
# Cache Go modules if go.sum is unchanged.
# Docs here: https://github.com/actions/cache/blob/9c7b3e90bdf39569c497c98e469f8a00e061c43f/examples.md#linux-1
- uses: actions/cache@v3
with:
path: |
~/.cache/go-build
~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- name: go test
run: go test -p 1 ./...