We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9a7ee78 commit 3d2dd39Copy full SHA for 3d2dd39
1 file changed
.github/workflows/buildwheel.yml
@@ -174,7 +174,21 @@ jobs:
174
# Test against flint main
175
test_flint_main:
176
name: Test flint main
177
- runs-on: ubuntu-22.04
+ runs-on: ubuntu-24.04
178
+ steps:
179
+ - uses: actions/checkout@v4
180
+ - uses: actions/setup-python@v5
181
+ with:
182
+ python-version: '3.13'
183
+ - run: bin/install_flint_ubuntu.sh main
184
+ # Need to disable flint version check to build against main
185
+ - run: pip install --config-settings=setup-args="-Dflint_version_check=false" .
186
+ - run: python -m flint.test --verbose
187
+
188
+ # Test against flint main
189
+ test_flint_main_arm:
190
+ name: Test flint main
191
+ runs-on: ubuntu-24.04-arm
192
steps:
193
- uses: actions/checkout@v4
194
- uses: actions/setup-python@v5
0 commit comments