-
Notifications
You must be signed in to change notification settings - Fork 88
58 lines (52 loc) · 1.74 KB
/
model_check.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
# Check the model of all collector plugins for consistency.
name: Model Check
on:
push:
branches:
- main
pull_request:
paths:
- 'resotolib/**'
- 'plugins/aws/**'
- 'plugins/azure/**'
- 'plugins/digitalocean/**'
- 'plugins/example_collector/**'
- 'plugins/gcp/**'
- 'plugins/github/**'
- 'plugins/k8s/**'
- 'plugins/onelogin/**'
- 'plugins/onprem/**'
- 'plugins/slack/**'
- 'plugins/vsphere/**'
- '.github/**'
- 'requirements-all.txt'
workflow_dispatch:
jobs:
model:
name: "model"
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: '3.10'
architecture: 'x64'
- name: Restore dependency cache
uses: actions/cache@v3
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{hashFiles('./resotolib/pyproject.toml')}}-${{hashFiles('./resotolib/requirements-test.txt')}}-${{hashFiles('./plugins/**/pyproject.toml')}}
restore-keys: |
${{ runner.os }}-pip-
- name: Install Dependencies
run: |
python -m pip install --upgrade pip
python -m pip install -r requirements-test.txt
pip install resotolib/ plugins/aws/ plugins/azure/ plugins/digitalocean/ plugins/dockerhub/ plugins/example_collector/ plugins/gcp/ plugins/github/ plugins/k8s/ plugins/onelogin/ plugins/onprem/ plugins/posthog/ plugins/random/ plugins/scarf/ plugins/slack/ plugins/vsphere/
- name: Run tests
working-directory: ./resotolib
env:
MODEL_CHECK: "true"
run: pytest test/core/model_check_test.py