Skip to content

build(deps): bump actions/checkout from 3.5.3 to 3.6.0 #335

build(deps): bump actions/checkout from 3.5.3 to 3.6.0

build(deps): bump actions/checkout from 3.5.3 to 3.6.0 #335

Workflow file for this run

name: Run tests
on: [ push, pull_request ]
permissions:
contents: read
jobs:
test:
strategy:
matrix:
version: [ '1.18', '1.19', '1.20', '1.21.0-rc.4' ]
platform: [ ubuntu-latest, macos-latest, windows-latest ]
runs-on: ${{ matrix.platform }}
steps:
- name: Install Go
uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe # v4.1.0
with:
go-version: ${{ matrix.version }}
- name: Checkout code
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0
- name: Build
run: go build -v ./...
- name: Test
run: go test -v -race ./...