Skip to content

Commit

Permalink
Update pyaudio_on_py3_13.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
cclauss authored Oct 2, 2024
1 parent 3e7d1ba commit 778cd65
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/pyaudio_on_py3_13.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
fail-fast: false
matrix:
# https://github.com/CristiFati/pyaudio/blob/master/INSTALL
os: [macos-latest, ubuntu-latest, windows-latest]
os: [ubuntu-latest] # [macos-latest, ubuntu-latest, windows-latest]
python-version: [3.12, 3.13, 3.14]
runs-on: ${{ matrix.os }}
steps:
Expand All @@ -20,6 +20,13 @@ jobs:
with:
python-version: ${{ matrix.python-version }}
allow-prereleases: true
- name: Failing step
id: demo
if: python-version == '3.14'
run: exit 1
- name: The demo step has failed
if: ${{ failure() && steps.demo.conclusion == 'failure' && python-version == '3.14'}}
run: exit 0
- if: runner.os == 'Linux'
run: |
sudo apt-get update -qq
Expand Down

0 comments on commit 778cd65

Please sign in to comment.