Skip to content

Merge pull request #7 from klippa-app/feature/improve-page-ranges #32

Merge pull request #7 from klippa-app/feature/improve-page-ranges

Merge pull request #7 from klippa-app/feature/improve-page-ranges #32

Workflow file for this run

name: Go
on:
push:
branches:
- main
- development
pull_request:
branches:
- main
- development
jobs:
test:
strategy:
fail-fast: false
matrix:
os: [ ubuntu-latest, macos-latest, windows-latest ]
go: [ "1.21" ]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go }}
- name: Run tests
run: |
go test ./... -v
- name: Test build
run: |
go build main.go