Skip to content

Update docker/setup-buildx-action action to v2 #3867

Update docker/setup-buildx-action action to v2

Update docker/setup-buildx-action action to v2 #3867

Workflow file for this run

name: Go CI
on:
- push
jobs:
go-test:
strategy:
matrix:
go-version: [1.19.x]
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go-version }}
- run: go test -i ./...
- run: go test -race -v ./...