Skip to content

Bump actions/setup-go from 3 to 4 #6

Bump actions/setup-go from 3 to 4

Bump actions/setup-go from 3 to 4 #6

Workflow file for this run

name: Tests
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
name: Go test
steps:
- uses: actions/checkout@master
- uses: actions/setup-go@v4
with:
go-version: '1.18.1'
- run: |
go test ./...
build:
runs-on: ubuntu-latest
name: Go build
steps:
- uses: actions/checkout@master
- uses: actions/setup-go@v4
with:
go-version: '1.18.1'
- run: |
go build -mod=vendor -o operator github.com/movetokube/postgres-operator/cmd/manager
file operator