Make the connection to OpenMage can use a port other than 80 or 443 #14
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: 'Linting XML' | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- '**.xml' | |
pull_request: | |
branches: | |
- main | |
paths: | |
- '**.xml' | |
# Allow manually triggering the workflow. | |
workflow_dispatch: | |
permissions: | |
contents: read | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Set up xmllint | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y libxml2-utils | |
- name: Linting XML files | |
run: 'find . -type f -iname "*.xml" | xargs xmllint --noout' |