Skip to content

Commit

Permalink
configure simple CI for xmllint (#6)
Browse files Browse the repository at this point in the history
  • Loading branch information
Talv authored Jul 2, 2024
1 parent 7d2db39 commit 26ad08a
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Lint

on:
push: {}
pull_request:
branches:
- master

jobs:
lint-xml:
runs-on: ubuntu-latest

steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v4

- name: Install deps
run: |
sudo apt-get update
sudo apt-get install -y libxml2-utils
- name: Validate schema against XSD
run: ./validate.sh

0 comments on commit 26ad08a

Please sign in to comment.