Skip to content

fix(queryCollection): omit filter and sort if empty #222

fix(queryCollection): omit filter and sort if empty

fix(queryCollection): omit filter and sort if empty #222

Workflow file for this run

name: Go
on: [push, pull_request]
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: "1.21"
- name: Check out source code
uses: actions/checkout@v4
- name: Test
run: go test -v ./...
- name: Smoke test
run: ./do/do.sh -smoke
- name: Staticcheck
run: |
# need to disable because staticcheck doesn't work on go 1.16
# and GitHub Actions still has 1.16
# go install honnef.co/go/tools/cmd/staticcheck@latest
# staticcheck ./... || true