Skip to content

Added areas sorting #50

Added areas sorting

Added areas sorting #50

Workflow file for this run

# This workflow will build a golang project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go
name: windows
on:
push:
branches: [ "master" ]
tags:
- '*'
pull_request:
branches: [ "master" ]
jobs:
build:
runs-on: [ windows-latest ]
steps:
- name: Checkout
with:
fetch-depth: 0
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '>=1.21.0'
- name: Build
run: go build
- name: Run
run: ./gossiped
- name: Test
run: go test -v ./... --bench=. -benchmem