feat(ci): add liquidsoap-prettier formatting test #16
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: Test (Liquidsoap) | |
on: # yamllint disable-line rule:truthy | |
pull_request: | |
types: [opened, synchronize] | |
paths: | |
- "**/*.liq" | |
- ".github/workflows/test-liquidsoap.yml" | |
jobs: | |
liquidsoap-fmt: | |
name: Test Liquidsoap scripts formatting | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
- run: 'npm install -g liquidsoap-prettier' | |
- run: | | |
ret=0 | |
for file in $(find . -type f -name "*.liq"); do | |
liquidsoap-prettier -c "${file}" || (echo "${file} is not formatted" && ret=2) | |
done | |
[ $ret -ne 0 ] && exit 2 | |
liquidsoap-test-transcoder-stereo: | |
name: Test Liquidsoap Transcoder Stereo | |
runs-on: ubuntu-latest | |
container: | |
image: savonet/liquidsoap:v2.2.5@sha256:2b3ab71509dc48f47f0f99b98316090081eeaf37bea3c96a3edaa4a55ec57f41 | |
options: --user root | |
steps: | |
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
- run: '/usr/bin/liquidsoap -c ./example/liquidsoap/myradio.liq ./scripts/transcoder/00-live.liq' | |
liquidsoap-test-transcoder-surround: | |
name: Test Liquidsoap Transcoder Surround | |
runs-on: ubuntu-latest | |
container: | |
image: savonet/liquidsoap:v2.2.5@sha256:2b3ab71509dc48f47f0f99b98316090081eeaf37bea3c96a3edaa4a55ec57f41 | |
options: --user root | |
steps: | |
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
- run: '/usr/bin/liquidsoap -c ./example/liquidsoap/myradiosurround.liq ./scripts/transcoder/00-live.liq' | |
liquidsoap-test-streamer-stereo: | |
name: Test Liquidsoap Streamer Stereo | |
runs-on: ubuntu-latest | |
container: | |
image: savonet/liquidsoap:v2.2.5@sha256:2b3ab71509dc48f47f0f99b98316090081eeaf37bea3c96a3edaa4a55ec57f41 | |
options: --user root | |
steps: | |
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
- run: '/usr/bin/liquidsoap -c ./example/liquidsoap/myradio.liq ./scripts/transcoder/00-live.liq' | |
liquidsoap-test-streamer-surround: | |
name: Test Liquidsoap Streamer Surround | |
runs-on: ubuntu-latest | |
container: | |
image: savonet/liquidsoap:v2.2.5@sha256:2b3ab71509dc48f47f0f99b98316090081eeaf37bea3c96a3edaa4a55ec57f41 | |
options: --user root | |
steps: | |
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
- run: '/usr/bin/liquidsoap -c ./example/liquidsoap/mystreamersurround.liq ./scripts/streamer/00-live.liq' |