Skip to content

Show row count only when paged in querydisplay table (#638) #1904

Show row count only when paged in querydisplay table (#638)

Show row count only when paged in querydisplay table (#638) #1904

Workflow file for this run

name: Go Lint and Test
on:
push:
tags:
- v*
branches:
- main
- "v*"
workflow_dispatch:
pull_request:
jobs:
golangci:
name: Lint and Test
runs-on: ubuntu-latest
steps:
- name: Checkout pipe-fittings repository
uses: actions/checkout@v4
with:
fetch-depth: 0
# this is required, check golangci-lint-action docs
- uses: actions/setup-go@v4
with:
go-version: '1.23'
cache: false # setup-go v4 caches by default, do not change this parameter, check golangci-lint-action doc: https://github.com/golangci/golangci-lint-action/pull/704
- name: golangci-lint
uses: golangci/golangci-lint-action@v3
with:
version: latest
args: --timeout=15m
- name: Run tests
run: make test