Skip to content

Update module github.com/onsi/gomega to v1.33.1 - autoclosed #67

Update module github.com/onsi/gomega to v1.33.1 - autoclosed

Update module github.com/onsi/gomega to v1.33.1 - autoclosed #67

Workflow file for this run

name: Tests
on:
push:
branches:
- master
pull_request:
paths:
- '**'
concurrency:
group: tests-${{ github.head_ref || github.ref }}-${{ github.repository }}
cancel-in-progress: true
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: '~1.19.0'
- name: Get dependencies
run: |
go install -mod=mod github.com/onsi/ginkgo/v2/ginkgo
go install github.com/onsi/gomega/...
- name: Run tests
run: |
ginkgo -r ./...