-
Notifications
You must be signed in to change notification settings - Fork 2
28 lines (26 loc) · 942 Bytes
/
main.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
name: Unit Tests
on: [push]
jobs:
config-unit-test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
submodules: 'true'
- name: Setup Go
uses: actions/setup-go@v3
with:
go-version-file: 'go.mod'
cache: true
- name: Setup Ginkgo
run: >
GINKGO_MOD=$(grep "github.com/onsi/ginkgo" go.mod | awk '{print $1 "@" $2}')
GOMEGA_VER=$(grep "github.com/onsi/gomega" go.mod | awk '{print $2}')
bash -c 'echo Using $GINKGO_MOD and gomega $GOMEGA_VER && go get $GINKGO_MOD && go get github.com/onsi/gomega@$GOMEGA_VER'
- name: Setup Ginkgo CLI
run: >
GINKGO_CLI_VER=$(grep "github.com/onsi/ginkgo" go.mod | awk '{print $2}')
bash -c 'go install github.com/onsi/ginkgo/v2/ginkgo@$GINKGO_CLI_VER'
- name: Run Unit Tests
run: type ginkgo && ginkgo version && ginkgo run -p --vv ./config/...