Skip to content

use go 1.22 in gh workflow #54

use go 1.22 in gh workflow

use go 1.22 in gh workflow #54

Workflow file for this run

name: Baloot
on:
push: []
jobs:
build_baloot:
strategy:
matrix:
go: ['1.22.1']
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 ./...