-
Notifications
You must be signed in to change notification settings - Fork 0
105 lines (86 loc) · 2.48 KB
/
checks.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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
# Copyright 2023 Dimitri Koshkin. All rights reserved.
# SPDX-License-Identifier: Apache-2.0
name: checks
on:
push:
branches:
- main
pull_request:
types:
- opened
- synchronize
- reopened
branches:
- main
jobs:
unit-test:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Install tools via asdf
uses: asdf-vm/actions/[email protected]
with:
asdf_branch: v0.11.2
- name: Run unit tests
run: make test
- name: Annotate tests
if: always()
uses: guyarb/[email protected]
with:
test-results: test.json
lint:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Gather tool versions
uses: endorama/asdf-parse-tool-versions@v1
id: versions
- name: github-actions-lint
uses: reviewdog/action-actionlint@v1
with:
fail_on_error: true
reporter: github-pr-review
- name: golangci-lint
uses: reviewdog/action-golangci-lint@v2
with:
fail_on_error: true
reporter: github-pr-review
go_version: v${{ fromJson(steps.versions.outputs.tools).golang }}
golangci_lint_version: v${{ fromJson(steps.versions.outputs.tools).golangci-lint }}
pre-commit:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Gather tool versions
uses: endorama/asdf-parse-tool-versions@v1
id: versions
- uses: actions/setup-go@v5
with:
go-version: ${{ fromJson(steps.versions.outputs.tools).golang }}
check-latest: false
cache: true
- uses: mfinelli/setup-shfmt@v3
with:
shfmt-version: ${{ fromJson(steps.versions.outputs.tools).shfmt }}
- uses: pre-commit/[email protected]
with:
extra_args: --all-files --show-diff-on-failure
env:
SKIP: no-commit-to-branch,golangci-lint
build-and-run:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Install tools via asdf
uses: asdf-vm/actions/[email protected]
with:
asdf_branch: v0.11.2
- name: Build
run: make build-snapshot
- name: Run binary
run: |
./dist/kubernetes-upgrader_linux_amd64_v1/kubernetes-upgrader --version