Skip to content

Commit

Permalink
PICARD-2746: Validate XDG desktop file in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
phw committed Sep 6, 2023
1 parent edbc07f commit 6f46ebc
Showing 1 changed file with 10 additions and 5 deletions.
Original file line number Diff line number Diff line change
@@ -1,32 +1,37 @@
name: Validate AppStream
name: Validate XDG metadata

on:
push:
paths:
- '.github/workflows/validate-appstream.yml'
- '.github/workflows/validate-xdg-metadata.yml'
- 'org.musicbrainz.Picard.appdata.xml.in'
- 'org.musicbrainz.Picard.desktop.in'
- 'po/appstream/*.po'
- 'NEWS.md'
- 'setup.py'
pull_request:

jobs:
validate-appstream:
validate-xdg-metadata:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.11'
- name: Install appstream-util
- name: Install utils
run: |
sudo apt-get update
sudo apt-get install appstream-util gettext
sudo apt-get install appstream-util desktop-file-utils gettext
- name: Validate AppStream metadata
run: |
python setup.py build_appdata
appstream-util validate-relax org.musicbrainz.Picard.appdata.xml
# TODO: Consider using appstreamcli once ubuntu-latest provides
# appstreamcli>=0.16, as this tool catches more issues.
#appstreamcli validate --pedantic --explain org.musicbrainz.Picard.appdata.xml
- name: Validate desktop file
run: |
python setup.py build_desktop_file
desktop-file-validate org.musicbrainz.Picard.desktop

0 comments on commit 6f46ebc

Please sign in to comment.