Skip to content

UKR-299 update machine player #50

UKR-299 update machine player

UKR-299 update machine player #50

Workflow file for this run

name: Baloot
on:
push: []
jobs:
build_baloot:
strategy:
matrix:
go: ['1.20', '1.21']
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go }}
check-latest: true
cache-dependency-path: ./go.sum
- name: Install dependencies
run: go mod download
- name: Build
run: go build -v ./...
- name: Test
run: go test -failfast -v -coverprofile=coverage.out ./...
- name: Vet
run: go vet ./...