-
-
Notifications
You must be signed in to change notification settings - Fork 11
42 lines (42 loc) · 971 Bytes
/
ci.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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
name: ci
on:
pull_request:
branches:
- master
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
name: Test
runs-on: ubuntu-latest
env:
VERBOSE: 1
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set Helm
uses: azure/setup-helm@v3
with:
version: v3.12.1
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.20'
cache: false
- name: golangci-lint
uses: golangci/golangci-lint-action@v3
with:
args: --timeout 5m0s
- name: Run tests
run: make test-all
- name: Install plugin
run: make install
- name: Run plugin
run: helm schema -help
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3
with:
flags: unittests