-
Notifications
You must be signed in to change notification settings - Fork 0
77 lines (62 loc) · 1.52 KB
/
ci.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
name: ci
on:
push:
branches:
- master
- testing
- security*
pull_request:
branches:
- master
- testing
- security*
jobs:
golang:
name: Golang compile and test
runs-on: ubuntu-latest
steps:
- uses: awalsh128/cache-apt-pkgs-action@latest
with:
packages: libpcap-dev
version: 1.0
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.19
check-latest: false
cache: true
cache-dependency-path: ./src
- uses: actions/cache@v3
with:
path: |
# ~/.cache/go-build
~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- name: Build
working-directory: ./src
run: go build -v ./...
- name: Test
working-directory: ./src
run: go test -v ./...
- name: golangci-lint
uses: golangci/golangci-lint-action@v3
with:
version: v1.50.1
working-directory: ./src
docker:
name: Functional test in docker compose
timeout-minutes: 5
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Start containers
run: docker compose -f "docker-compose.yml" -p virtagenttest up -d --build
- name: ping-test.sh
run: ./tests/test_action.sh
- name: Stop containers
if: always()
run: docker compose -f "docker-compose.yml" -p virtagenttest down