We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7bc7b16 commit 12f0442Copy full SHA for 12f0442
1 file changed
.github/workflows/unittests.yml
@@ -0,0 +1,28 @@
1
+name: Test Python SDK
2
+
3
+on:
4
+ pull_request:
5
+ push:
6
+ branches:
7
+ - main
8
9
+jobs:
10
+ test-policies:
11
+ timeout-minutes: 30
12
+ runs-on: ubuntu-latest
13
+ steps:
14
+ - name: Checkout
15
+ uses: actions/checkout@v3
16
+ - uses: actions/setup-python@v4
17
+ with:
18
+ python-version: "3.9"
19
+ cache: "pip"
20
+ cache-dependency-path: "./requirements.txt"
21
+ - name: Install dependencies
22
+ run: pip install -r requirements.txt
23
+ - name: Setup CloudQuery
24
+ uses: cloudquery/setup-cloudquery@v3
25
26
+ version: "v3.10.1"
27
+ - name: Run tests
28
+ run: make test
0 commit comments