Skip to content

Bump docker/setup-buildx-action from 3.0.0 to 3.2.0 #186

Bump docker/setup-buildx-action from 3.0.0 to 3.2.0

Bump docker/setup-buildx-action from 3.0.0 to 3.2.0 #186

Workflow file for this run

name: PR
on:
pull_request:
branches: [ main ]
jobs:
tests:
name: go tests
runs-on: ubuntu-latest
steps:
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: '1.18'
- name: Check out code into the Go module directory
uses: actions/checkout@v4
- name: run tests
run: |
export GOPATH=$HOME/go
export PATH=$PATH:$GOPATH/bin
go test ./... -v