Skip to content

feat: add pagination #15

feat: add pagination

feat: add pagination #15

Workflow file for this run

name: Quality
on:
pull_request:
branches:
- master
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: "1.20"
- name: Install dependencies
run: go mod tidy
- name: Run tests
run: go test ./... -v
- name: Build
run: |
mkdir -p bin
go build -o bin/scalingo-test