-
Notifications
You must be signed in to change notification settings - Fork 44
95 lines (87 loc) · 2.63 KB
/
Copy pathtest.yml
File metadata and controls
95 lines (87 loc) · 2.63 KB
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
# This GitHub action runs your tests for each commit push and/or PR. Optionally
# you can turn it on using a cron schedule for regular testing.
#
name: Tests
on:
pull_request:
types: [labeled]
paths-ignore:
- 'README.md'
push:
paths-ignore:
- 'README.md'
# For systems with an upstream API that could drift unexpectedly (like most SaaS systems, etc.),
# we recommend testing at a regular interval not necessarily tied to code changes. This will
# ensure you are alerted to something breaking due to an API change, even if the code did not
# change.
# schedule:
# - cron: '0 13 * * *'
permissions:
contents: read
jobs:
build:
if: contains(github.event.pull_request.labels.*.name, 'safe_to_test')
name: Build
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.18'
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.sha }}
- name: Get dependencies
run: |
go mod download
- name: Build
run: |
go build -v .
test:
if: contains(github.event.pull_request.labels.*.name, 'safe_to_test')
needs: build
runs-on: ubuntu-latest
timeout-minutes: 120
strategy:
max-parallel: 1 # This makes jobs run sequentially
fail-fast: false
matrix:
terraform: [
'0.15.5',
'0.14.11',
'1.1.2',
'1.5.3'
]
name: Test Terraform ${{ matrix.terraform }}
steps:
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.18'
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.sha }}
- name: Get dependencies
run: |
go mod download
- name: Run TF acceptance tests
uses: nick-fields/retry@v2
env:
TF_ACC: "1"
TF_ACC_TERRAFORM_VERSION: ${{ matrix.terraform }}
AQUA_URL: ${{ secrets.AQUA_URL }}
AQUA_USER: ${{ secrets.AQUA_USER }}
AQUA_PASSWORD: ${{ secrets.AQUA_PASSWORD }}
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
AWS_REGION: ${{ secrets.AWS_REGION }}
AWS_LOG_GROUP: ${{ secrets.AWS_LOG_GROUP }}
with:
max_attempts: 2
timeout_minutes: 15
command: go test -v -cover ./aquasec/ -timeout 15m