Skip to content

UI pagination (#19) #63

UI pagination (#19)

UI pagination (#19) #63

Workflow file for this run

name: Build and Test
on:
push:
branches:
- master
- main
pull_request:
branches:
- master
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: '1.21.x'
- name: Install dependencies
run: |
go mod download
- name: Run build
run: make build
- name: Run testing
run: go test -v ./...