Skip to content

chore(deps): bump the all group across 1 directory with 5 updates #50

chore(deps): bump the all group across 1 directory with 5 updates

chore(deps): bump the all group across 1 directory with 5 updates #50

Workflow file for this run

name: build
on: [push, pull_request]
jobs:
build:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
env:
GO111MODULE: "on"
steps:
- name: Install Go
uses: actions/setup-go@v6
with:
go-version: stable
check-latest: true
- name: Checkout code
uses: actions/checkout@v6
- name: Download Go modules
run: go mod download
- name: Build
run: go build -v ./...
- name: Test
run: go test -v -cover -timeout=30s ./...