File tree Expand file tree Collapse file tree 1 file changed +25
-0
lines changed Expand file tree Collapse file tree 1 file changed +25
-0
lines changed Original file line number Diff line number Diff line change 6
6
branches : [ main ]
7
7
paths :
8
8
- " eng/tools/azure-sdk-tools/**"
9
+ - " .github/workflows/azure-sdk-tools.yml"
9
10
10
11
jobs :
11
12
build-and-test :
29
30
pytest ./tests
30
31
shell : bash
31
32
working-directory : eng/tools/azure-sdk-tools
33
+
34
+ dev-setup-and-import :
35
+ runs-on : ubuntu-latest
36
+ steps :
37
+ - uses : actions/checkout@v2
38
+
39
+ - name : Set up Python 3.13
40
+ uses : actions/setup-python@v4
41
+ with :
42
+ python-version : 3.13
43
+
44
+ - name : Run dev_setup to install specified packages
45
+ run : |
46
+ python scripts/dev_setup.py --packageList azure-storage-blob,azure-appconfiguration
47
+ shell : bash
48
+
49
+ - name : Validate imports
50
+ run : |
51
+ python - <<'PY'
52
+ from azure.storage.blob import *
53
+ from azure.appconfiguration import *
54
+ print("Successful Imports")
55
+ PY
56
+ shell : bash
You can’t perform that action at this time.
0 commit comments