Skip to content

chore(deps): bump actions/checkout from 6 to 7 in the all group #51

chore(deps): bump actions/checkout from 6 to 7 in the all group

chore(deps): bump actions/checkout from 6 to 7 in the all group #51

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@v7
- name: Download Go modules
run: go mod download
- name: Build
run: go build -v ./...
- name: Test
run: go test -v -cover -timeout=30s ./...