-
Notifications
You must be signed in to change notification settings - Fork 13
89 lines (74 loc) · 1.96 KB
/
pre-main.yml
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
---
name: Test Incoming Changes
'on':
push:
branches: [main]
pull_request:
branches: [main]
jobs:
lint:
runs-on: ubuntu-22.04
env:
SHELL: /bin/bash
steps:
- uses: actions/checkout@v4
- name: Set up Go 1.22
uses: actions/setup-go@v5
with:
go-version: 1.22.2
- uses: nosborn/[email protected]
with:
files: README.md
- uses: ludeeus/action-shellcheck@master
with:
ignore_paths: vendor
- uses: mfinelli/setup-shfmt@v3
- run: shfmt -d scripts/*.sh
- uses: crate-ci/typos@master
- uses: ibiqlik/action-yamllint@v3
with:
file_or_dir: .github/workflows/*.yml config/*.yaml
config_data: |
extends: default
rules:
line-length:
level: warning
trailing-spaces:
level: warning
brackets:
level: warning
empty-lines:
level: warning
- name: Run lint
run: make lint
build:
runs-on: ubuntu-22.04
env:
SHELL: /bin/bash
steps:
- uses: actions/checkout@v4
- name: Set up Go 1.22
uses: actions/setup-go@v5
with:
go-version: 1.22.2
- name: Install ginkgo
run: make install-ginkgo
- name: Compile test suites
run: ginkgo build -r ./tests
unittest:
runs-on: ubuntu-22.04
env:
SHELL: /bin/bash
steps:
- uses: actions/checkout@v4
- name: Set up Go 1.22
uses: actions/setup-go@v5
with:
go-version: 1.22.2
- name: Checkout the cnf-certification-test repo
uses: actions/checkout@v4
with:
repository: test-network-function/cnf-certification-test
path: cnf-certification-test
- name: Run Unit Tests
run: TNF_REPO_PATH=${GITHUB_WORKSPACE}/cnf-certification-test make unit-tests