-
Notifications
You must be signed in to change notification settings - Fork 127
54 lines (47 loc) · 1.74 KB
/
compatibility.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
name: Check Compatibility
on: [push, pull_request]
jobs:
test-integrations:
name: Install all packages
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.8'
- name: Create a combined requirements file
run: |
echo "Creating combined requirements file"
touch combined-requirements.txt
for dir in integrations/*; do
if [ -f "$dir/pyproject.toml" ]; then
echo "Processing $dir/pyproject.toml"
pip install tomli
python -c "
import tomli
with open('$dir/pyproject.toml', 'rb') as f:
data = tomli.load(f)
if 'dependencies' in data['project']:
deps = data['project']['dependencies']
with open('combined-requirements.txt', 'a') as req_file:
for dep in deps:
req_file.write(dep + '\n')
"
fi
done
- name: Display combined requirements
run: cat combined-requirements.txt
- name: Install dependencies
run: |
echo "Installing combined dependencies"
pip install -r combined-requirements.txt
- name: Verify installations
run: |
for dir in integrations/*; do
if [ -f "$dir/pyproject.toml" ]; then
package_name=$(awk -F'[ ="]+' '$1 == "name" {print $2}' $dir/pyproject.toml)
python -c "import $package_name" || exit 1
fi
done