Skip to content

Commit

Permalink
Test on all OSes
Browse files Browse the repository at this point in the history
  • Loading branch information
kdeldycke committed Oct 30, 2024
1 parent f00135d commit f86b70b
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,14 @@ jobs:

nuitka-issue-3173:
name: "Nuitka: test for #3173"
runs-on: windows-2022
strategy:
matrix:
os:
- "ubuntu-24.04"
- "macos-15" # arm64
- "macos-13" # x86-64
- "windows-2022"
runs-on: ${{ matrix.os }}
steps:
- uses: actions/setup-python@v5.3.0
with:
Expand All @@ -24,9 +31,9 @@ jobs:
continue-on-error: true
run: |
uv run
- name: Nuitka --version - Working case
- name: Nuitka found (working case)
run: |
uv --no-progress run --frozen -- python -m nuitka --version
- name: Nuitka --version - Broken case
- name: Nuitka not found (broken case)
run: |
uv --no-progress run --frozen -- nuitka --version

0 comments on commit f86b70b

Please sign in to comment.