-
Notifications
You must be signed in to change notification settings - Fork 48
76 lines (74 loc) · 1.85 KB
/
dependencies.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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
name: klio dependency compatibility checks
on:
schedule:
# Run once daily
- cron: '0 0 * * *'
push:
branches:
- master
- develop
- release-*
paths-ignore:
- 'docs/**'
- 'devtools/**'
- 'examples/**'
- '**.rst'
pull_request:
branches:
- master
- develop
- release-*
paths-ignore:
- 'docs/**'
- 'devtools/**'
- 'examples/**'
- '**.rst'
jobs:
core_cli_checks:
name: "klio: verify no dependency conflicts between core/cli"
runs-on: "ubuntu-latest"
steps:
- uses: "actions/checkout@v2"
- uses: "actions/setup-python@v1"
with:
python-version: "3.7"
- name: "Install dependencies"
run: |
set -xe
python -VV
python -m site
python -m pip install --upgrade pip setuptools
- name: "Install klio_core"
run: |
python -m pip install -e core
python -m pip check
- name: "Install klio_cli"
run: |
python -m pip install -e cli
python -m pip check
core_lib_exec_checks:
name: "klio: verify no dependency conflicts between core/lib/exec"
runs-on: "ubuntu-latest"
steps:
- uses: "actions/checkout@v2"
- uses: "actions/setup-python@v1"
with:
python-version: "3.7"
- name: "Install dependencies"
run: |
set -xe
python -VV
python -m site
python -m pip install --upgrade pip setuptools
- name: "Install klio_core"
run: |
python -m pip install -e core
python -m pip check
- name: "Install klio_lib"
run: |
python -m pip install -e lib
python -m pip check
- name: "Install klio_exec"
run: |
python -m pip install -e exec
python -m pip check