Skip to content

balancer

balancer #27

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: Go
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
test:
strategy:
matrix:
os: ["ubuntu-latest", "macos-latest", "windows-latest"]
go-ver: ["1.21", "1.20", "1.19"]
include:
- os: "ubuntu-latest"
go-ver: "1.21"
cover: true
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go-ver }}
- name: Build
run: go build -v ./...
- name: Test with Cover
run: go test -v -count=100 -coverprofile=coverage.txt -covermode=atomic ./...
if: ${{ matrix.cover }}
- name: Test without Cover
run: go test -v -count=100 ./...
if: ${{ !matrix.cover }}
- name: Test Race
run: go test -race -v -count=100 ./...
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3
if: ${{ matrix.cover }}