Skip to content

Bump actions/setup-go from 2 to 5 #15

Bump actions/setup-go from 2 to 5

Bump actions/setup-go from 2 to 5 #15

Workflow file for this run

name: Go
on:
workflow_dispatch:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 1.15
# Not needed
# - name: Fetch
# run: go get -t -v ./...
- name: Format
run: diff -u <(echo -n) <(gofmt -d -s .)
- name: Build
run: go build outbound-link-checker.go
# We don't have tests yet
# go test -v ./...
- name: Vet
run: go vet .