Skip to content

Commit

Permalink
Test case for Nuitka/Nuitka#3173
Browse files Browse the repository at this point in the history
  • Loading branch information
kdeldycke committed Oct 30, 2024
0 parents commit f00135d
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
---
"on":
push:
pull_request:
workflow_dispatch:

jobs:

nuitka-issue-3173:
name: "Nuitka: test for #3173"
runs-on: windows-2022
steps:
- uses: actions/setup-python@v5.3.0
with:
python-version: "3.12"
- name: Install uv
run: |
python -m pip install "uv == 0.4.28"
- name: Install Nuitka
run: |
uv --no-progress venv
uv --no-progress pip install "nuitka == 2.4.11" "ordered-set == 4.1.0" "zstandard == 0.23.0"
- name: List uv CLIs
continue-on-error: true
run: |
uv run
- name: Nuitka --version - Working case
run: |
uv --no-progress run --frozen -- python -m nuitka --version
- name: Nuitka --version - Broken case
run: |
uv --no-progress run --frozen -- nuitka --version

0 comments on commit f00135d

Please sign in to comment.