We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 84df2ad commit d4998bbCopy full SHA for d4998bb
.github/workflows/unit_tests.yml
@@ -73,3 +73,29 @@ jobs:
73
name: codecov-umbrella
74
fail_ci_if_error: true
75
verbose: true
76
+
77
+ import-test:
78
+ runs-on: ubuntu-latest
79
+ strategy:
80
+ matrix:
81
+ python-version: ["3.10", "3.11", "3.12"]
82
+ steps:
83
+ - uses: actions/checkout@v4.2.2
84
85
+ - name: Install uv
86
+ uses: astral-sh/setup-uv@v5.3.1
87
+ with:
88
+ version: "0.5.21"
89
+ enable-cache: true
90
91
+ - name: "Set up Python ${{ matrix.python-version }}"
92
+ uses: actions/setup-python@v5.4.0
93
94
+ python-version: ${{ matrix.python-version }}
95
96
+ - name: Install the core package only
97
+ run: uv sync
98
99
+ - name: Run import tests
100
+ run: |
101
+ uv run pytest tests/test_imports.py
0 commit comments