Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
23 lines
729 B
YAML
23 lines
729 B
YAML
name: Validate MetaInfo
|
|
"on":
|
|
pull_request:
|
|
branches: ["master"]
|
|
paths:
|
|
- .github/workflows/validate-appstream-metainfo.yml
|
|
- Source/LoadByOS/LinuxConfigApp/com.getlibation.Libation.metainfo.xml
|
|
push:
|
|
branches: ["master"]
|
|
paths:
|
|
- .github/workflows/validate-appstream-metainfo.yml
|
|
- Source/LoadByOS/LinuxConfigApp/com.getlibation.Libation.metainfo.xml
|
|
|
|
jobs:
|
|
validate-appstream-metainfo:
|
|
runs-on: ubuntu-latest
|
|
container:
|
|
image: ghcr.io/flathub/flatpak-builder-lint:latest
|
|
steps:
|
|
- uses: actions/checkout@v5
|
|
- name: Check the MetaInfo file
|
|
run: flatpak-builder-lint appstream Source/LoadByOS/LinuxConfigApp/com.getlibation.Libation.metainfo.xml
|