Skip to content

185509385 - Configure dependabot for GitHub actions #155

185509385 - Configure dependabot for GitHub actions

185509385 - Configure dependabot for GitHub actions #155

Workflow file for this run

---
name: CI
on: pull_request
jobs:
build:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.18
- name: Install ginkgo
run: go install github.com/onsi/ginkgo/v2/ginkgo@latest
- name: Test
run: |
export GOPATH=$(go env GOPATH)
make unit