Skip to content

test enable AudioTest. #360

test enable AudioTest.

test enable AudioTest. #360

Workflow file for this run

name: Unit Test
on:
push:
branches: develop
pull_request:
branches: develop
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
unitTest:
name: "Unit Test"
runs-on: ubuntu-latest
env:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
EXCLUDE_TEST_TAG: moe.brianhsu.AudioOutputTest
LANG: en_US.utf-8
container:
image: debian:sid
steps:
- name: "Checkout Source Code"
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Show env
env:
HOME: /tmp/home
run: |
echo $HOME
- name: Install pulseaudio
run: |
apt-get -yq update
apt-get -yq install pulseaudio
- name: Start pulseaudio
run: |
pulseaudio &
- name: List sound card
run: |
pactl list
- name: Unit test
uses: ./.github/actions/run-unit-test