-
Notifications
You must be signed in to change notification settings - Fork 0
40 lines (36 loc) · 970 Bytes
/
test.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
on: push
name: Test
jobs:
test:
strategy:
matrix:
version: ["3.9", "3.10", "3.11"]
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: "${{ matrix.version }}"
- name: Install dependencies
run: pip install -r requirements.txt
- name: Install client
run: pip install .
- name: Sanity Check CLI
run: |
cirun -v
cirun --version
cirun -h
cirun repo -h
cirun repo add -h
cirun repo remove -h
cirun cloud -h
cirun cloud connect -h
cirun cloud connect aws -h
cirun cloud connect azure -h
cirun cloud connect gcp -h
cirun cloud connect openstack -h
cirun cloud connect oracle -h
- name: Run Python Tests
run: pytest -vv