Add tls12Only, disabledTLSCiphers and adminConfigurableRinger. #12
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: xml lint | |
on: | |
push: | |
branches: | |
- master | |
paths: | |
- '*.xml' | |
- 'Desktops/*/*.xml' | |
- '.github/workflows/xmllint.yml' | |
pull_request: | |
branches: | |
- master | |
paths: | |
- '*.xml' | |
- 'Desktops/*/*.xml' | |
- '.github/workflows/xmllint.yml' | |
workflow_dispatch: | |
jobs: | |
lint: | |
name: Run xml linter | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@main | |
- name: Install packages | |
run: | | |
sudo apt install libxml2-utils | |
- name: Run xmllint | |
run: | | |
xmllint --noout *.xml Desktops/*/*.xml |