Switch to Pulseaudio user mode for audio services #11
Workflow file for this run
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: Lint Yaml | |
on: [pull_request] | |
jobs: | |
lint: | |
name: lint | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
shell: bash | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Install linters | |
run: sudo apt update && sudo apt install ansible-lint -y --no-install-recommends | |
- name: Setup ansible-lint and yamllint | |
run: pip install ansible-lint yamllint | |
- name: Run yamllint | |
run: yamllint . | |
- name: Run ansible-lint | |
run: ansible-lint roles/ |