Update stream URL of radio Puls #707
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 | |
on: [ push ] # yamllint disable-line rule:truthy | |
jobs: | |
build: | |
name: lint | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@master | |
- name: Set up Python 3.x | |
uses: actions/setup-python@v5 | |
with: | |
python-version: 3.x | |
- name: Install yamllint | |
run: pip3 install yamllint | |
- name: Perform yamllint | |
run: yamllint -f github --strict -c .yamllint.yaml . |