Skip to content

👷 Bump scream version #123

👷 Bump scream version

👷 Bump scream version #123

Workflow file for this run

name: Tests
on: [push, pull_request]
jobs:
linter:
runs-on: windows-2022
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
- run: pip install tox
- run: tox -e lint-check
test:
runs-on: windows-2022
strategy:
matrix:
# TODO
# python: ['3.8', '3.9', '3.10', '3.11', '3.12']
python: ['3.10']
steps:
- uses: actions/checkout@v4
# Virtual network sound card for Microsoft Windows
- name: Install Scream
env:
VERSION: '4.0'
shell: powershell
# TODO
# - run: net start audiosrv
# https://github.com/actions/runner-images/issues/2528#issuecomment-1050295010
run: |
Invoke-WebRequest https://github.com/duncanthrax/scream/releases/download/${{ env.VERSION }}/Scream${{ env.VERSION }}.zip -OutFile Scream${{ env.VERSION }}.zip
Expand-Archive -Path Scream${{ env.VERSION }}.zip -DestinationPath Scream
# TODO
Import-Certificate -FilePath Scream\Install\driver\x64\scream.cat -CertStoreLocation Cert:\LocalMachine\TrustedPublisher
# Scream\Install\helpers\devcon-x64.exe install Scream\Install\driver\x64\Scream.inf *Scream
# TODO
# - uses: actions/setup-python@v5
# with:
# python-version: ${{ matrix.python }}
# - run: pip install tox
# - run: tox -e py
# - name: Run Coverage
# if: matrix.python == '3.10'
# env:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# run: tox -e coveralls