Skip to content

Create an index on active users to make paging through them more effi… #1196

Create an index on active users to make paging through them more effi…

Create an index on active users to make paging through them more effi… #1196

Workflow file for this run

name: golang
on:
pull_request:
push:
branches:
- main
concurrency:
group: '${{ github.workflow }}-${{ github.head_ref || github.ref }}'
cancel-in-progress: true
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- name: Git Checkout
uses: actions/checkout@v3
- name: Set up Go tooling
uses: actions/setup-go@v4
with:
go-version: "1.21"
- name: Build
run: make build
- name: Test
run: make test
lint:
runs-on: ubuntu-latest
steps:
- name: Git Checkout
uses: actions/checkout@v3
- name: Set up Go tooling
uses: actions/setup-go@v4
with:
go-version: "1.21"
- name: Lint
run: make lint