-
Notifications
You must be signed in to change notification settings - Fork 0
75 lines (73 loc) · 2.31 KB
/
tests.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
name: Tests and code quality
on:
push:
branches:
- main
- renovate/**
pull_request:
branches:
- main
jobs:
pre_job:
runs-on: ubuntu-latest
outputs:
should_skip: ${{ steps.skip_check.outputs.should_skip }}
steps:
- id: skip_check
uses: fkirc/skip-duplicate-actions@v5
with:
concurrent_skipping: same_content
do_not_skip: '["pull_request", "release", "workflow_dispatch", "schedule"]'
skip_after_successful_duplicate: true
tests:
name: Code quality, unit tests and code coverage
runs-on: ubuntu-latest
needs: pre_job
if: needs.pre_job.outputs.should_skip != 'true'
steps:
- uses: actions/checkout@v4
- name: Get Go version from Dockerfile
id: get-go-version
run: |
echo "GO_VERSION=$(grep -oP 'FROM .* golang:\K[\d.]+' Dockerfile)" \
>> $GITHUB_OUTPUT
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: ${{ steps.get-go-version.outputs.GO_VERSION }}
- name: Lint Go Code
uses: golangci/golangci-lint-action@v6
with:
args: --verbose
- name: Build
run: go build -v ./...
- name: Check command usage in README.md
# Thanks to https://unix.stackexchange.com/a/17405
run: diff
<(sed '1,/\$ docker-socket-proxy -help/d;/```/,$d' README.md)
<(go run . -help 2>&1)
- name: Test
run: go test -coverprofile cover.out -race -v ./...
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}
fail_ci_if_error: true
flags: unittests
integration:
name: Integration tests
runs-on: ubuntu-latest
needs: pre_job
if: needs.pre_job.outputs.should_skip != 'true'
steps:
- uses: actions/checkout@v4
- name: Lint Dockerfile
uses: hadolint/hadolint-action@v3.1.0
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Run integration tests
run: ./smoke_test.sh --log-file ${{ runner.temp }}/integration_tests.log
working-directory: integration
- name: Print service logs
if: success() || failure()
run: cat ${{ runner.temp }}/integration_tests.log