Skip to content

ensure a more natural sorting order #256

ensure a more natural sorting order

ensure a more natural sorting order #256

Workflow file for this run

name: Tests
on:
push:
pull_request:
branches:
- master
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
steps:
- uses: actions/checkout@v3
# Setup Go
- name: Setup Go
uses: actions/setup-go@v3
with:
go-version: '1.19'
# Tests
- name: Run tests
run: go test ./... -race