Skip to content

feat: Add Cursor based pagination support for Keys and Translations APIs #148

feat: Add Cursor based pagination support for Keys and Translations APIs

feat: Add Cursor based pagination support for Keys and Translations APIs #148

Workflow file for this run

on: [push, pull_request]
name: tests
env:
GO111MODULE: on
jobs:
linux:
strategy:
matrix:
go-version: [1.x, 1.12.x]
runs-on: ubuntu-latest
steps:
- uses: actions/setup-go@v1
with:
go-version: ${{ matrix.go-version }}
- uses: actions/checkout@v1
- name: Cache go modules
uses: actions/cache@preview
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('go.sum') }}
restore-keys: ${{ runner.os }}-go-
- name: Run go fmt
run: diff -u <(echo -n) <(gofmt -d -s .)
- name: Run go vet
run: go vet ./...
- name: Run go test
run: go test -v -race ./...
windows:
strategy:
matrix:
go-version: [1.x, 1.12.x]
runs-on: windows-latest
steps:
- uses: actions/setup-go@v1
with:
go-version: ${{ matrix.go-version }}
- uses: actions/checkout@v1
- name: Cache go modules
uses: actions/cache@preview
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('go.sum') }}
restore-keys: ${{ runner.os }}-go-
- run: go test ./...