Skip to content

Bump github.com/cloudfoundry/dropsonde from 1.0.0 to 1.1.0 #37

Bump github.com/cloudfoundry/dropsonde from 1.0.0 to 1.1.0

Bump github.com/cloudfoundry/dropsonde from 1.0.0 to 1.1.0 #37

Workflow file for this run

name: Go
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.20'
- name: Build
run: go build -v ./...
- name: postgresdb setup
run: |
sudo systemctl start postgresql.service
sudo -u postgres psql --command="CREATE USER locket PASSWORD 'locket_pw'"
sudo -u postgres psql --command="ALTER USER locket CREATEDB"
sudo -u postgres createdb --owner=locket locket
- name: Test
run: |
go install github.com/onsi/ginkgo/v2/ginkgo@v2
go install code.cloudfoundry.org/locket/cmd/locket@latest
ginkgo version
ginkgo -r --keep-going -p -trace --randomize-all --race .