mirror of
https://github.com/fergalmoran/picard.git
synced 2026-01-29 20:03:58 +00:00
39 lines
1.2 KiB
YAML
39 lines
1.2 KiB
YAML
name: Validate XDG metadata
|
|
|
|
on:
|
|
push:
|
|
paths:
|
|
- '.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-xdg-metadata:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Set up Python
|
|
uses: actions/setup-python@v5
|
|
with:
|
|
python-version: '3.12'
|
|
- name: Install utils
|
|
run: |
|
|
sudo apt-get update
|
|
sudo apt-get install appstream-util desktop-file-utils gettext
|
|
pip install setuptools
|
|
- 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
|