mirror of
https://github.com/rmcrackan/Libation.git
synced 2026-02-18 00:17:43 +01:00
Bumps [actions/checkout](https://github.com/actions/checkout) from 5 to 6. - [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/v5...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' 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@v6
|
|
- name: Check the MetaInfo file
|
|
run: flatpak-builder-lint appstream Source/LoadByOS/LinuxConfigApp/com.getlibation.Libation.metainfo.xml
|