Skip to content

build(deps): bump github.com/onsi/ginkgo/v2 from 2.16.0 to 2.17.0 #97

build(deps): bump github.com/onsi/ginkgo/v2 from 2.16.0 to 2.17.0

build(deps): bump github.com/onsi/ginkgo/v2 from 2.16.0 to 2.17.0 #97

Workflow file for this run

name: run-tests
on:
workflow_call:
outputs:
pr_number:
description: "The PR number"
value: ${{ jobs.test.outputs.pr_number }}
push:
branches: [ main ]
pull_request:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
version: [ 'oldstable', 'stable' ]
name: Go ${{ matrix.version }}
outputs:
pr_number: ${{ github.event.number }}
steps:
- uses: actions/setup-go@v4
with:
go-version: ${{ matrix.version }}
- uses: actions/checkout@v4
- run: ./scripts/run-tests.sh
call-dependabot-pr-workflow:
needs: test
if: ${{ success() && github.actor == 'dependabot[bot]' }}
uses: pivotal-cf/brokerapi/.github/workflows/dependabot-test.yml@main
with:
pr_number: ${{ github.event.number }}