Skip to content

Commit 4074105

Browse files
committed
ensure we can't break dev setup without knowing
1 parent d43fe29 commit 4074105

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

.github/workflows/azure-sdk-tools.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,3 +29,27 @@ jobs:
2929
pytest ./tests
3030
shell: bash
3131
working-directory: eng/tools/azure-sdk-tools
32+
33+
dev-setup-and-import:
34+
runs-on: ubuntu-latest
35+
steps:
36+
- uses: actions/checkout@v2
37+
38+
- name: Set up Python 3.13
39+
uses: actions/setup-python@v4
40+
with:
41+
python-version: 3.13
42+
43+
- name: Run dev_setup to install specified packages
44+
run: |
45+
python scripts/dev_setup.py --packageList azure-storage-blob,azure-appconfiguration
46+
shell: bash
47+
48+
- name: Validate imports
49+
run: |
50+
python - <<'PY'
51+
from azure.storage.blob import *
52+
from azure.appconfiguration import *
53+
print("Successful Imports")
54+
PY
55+
shell: bash

0 commit comments

Comments
 (0)