Skip to content

Make the connection to OpenMage can use a port other than 80 or 443 #14

Make the connection to OpenMage can use a port other than 80 or 443

Make the connection to OpenMage can use a port other than 80 or 443 #14

Workflow file for this run

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'