Skip to content

Commit

Permalink
ci: Add some basic manifest validation in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
bbhtt committed Oct 20, 2024
1 parent efccd9d commit 42504a1
Show file tree
Hide file tree
Showing 2 changed files with 41 additions and 0 deletions.
40 changes: 40 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
name: CI

on:
push:
pull_request:
workflow_dispatch:

jobs:
CI:
runs-on: ubuntu-latest
if: (github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository)
steps:
- uses: actions/checkout@v4

- name: Set up dependencies
run: |
sudo add-apt-repository ppa:flatpak/stable
sudo apt-get update
sudo apt-get install -y flatpak
flatpak remote-add --user --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo
flatpak install flathub -y org.flatpak.Builder
- name: Validate manifests
run: |
set -e
for i in $(find . -type f -name "*.json"); do flatpak run org.flatpak.Builder --show-manifest --show-manifest "$i"; done
rm -rf .flatpak-builder
find . -maxdepth 1 -mindepth 1 -type d ! -path './.github' ! -path './.git' | while read dir; do
if [ "$(find "$dir" -maxdepth 1 -type f -name '*.json' | wc -l)" -eq 0 ]; then
echo "Error: $dir has no JSON manifest"
exit 1
fi
done
files="$(find . -type f \( -name '*.yml' -o -name '*.yaml' \) ! -path './.github/*' ! -path './.git')"
if [ -n "$files" ]; then
echo "Error: YML/YAML file found: $files"
exit 1
fi
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
.flatpak-builder/

0 comments on commit 42504a1

Please sign in to comment.