-
Notifications
You must be signed in to change notification settings - Fork 2
52 lines (50 loc) · 1.44 KB
/
example.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
name: setup-cloudquery example
on:
push:
branches:
- main
pull_request:
types: [opened, synchronize, reopened]
jobs:
cloudquery-sync:
permissions:
id-token: write
contents: read
runs-on: ${{ matrix.os }}
strategy:
matrix:
dbversion: ['postgres:latest']
cloudquery-version: ['6.8.0', 'v6.8.0']
os: [ubuntu-latest]
fail-fast: false
services:
postgres:
image: ${{ matrix.dbversion }}
env:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: pass
POSTGRES_DB: postgres
ports:
- 5432:5432
# Set health checks to wait until postgres has started
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
timeout-minutes: 30
steps:
- uses: actions/checkout@v4
- name: Configure AWS credentials
uses: aws-actions/configure-aws-credentials@e3dd6a429d7300a6a4c196c26e071d42e0343502 # v4
with:
role-to-assume: arn:aws:iam::615713231484:role/cq-playground-aws-github-action
aws-region: us-east-1
- name: Setup CloudQuery
uses: ./.
with:
version: ${{matrix.cloudquery-version}}
- name: Sync with CloudQuery
env:
CLOUDQUERY_API_KEY: ${{ secrets.CLOUDQUERY_API_KEY }}
run: cloudquery sync example_configs/spec.yml --log-console