1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
|
on:
push:
branches: [main]
pull_request:
name: CI
jobs:
codespell:
name: Check for spelling errors
runs-on: ubuntu-latest
steps:
- uses: codespell-project/actions-codespell@master
flatpak-builder:
name: "Flatpak"
runs-on: ubuntu-latest
container:
image: bilelmoussaoui/flatpak-github-actions:gnome-nightly
options: --privileged
steps:
- uses: actions/checkout@v4
- uses: flatpak/flatpak-github-actions/flatpak-builder@v6
with:
bundle: "wordbook-devel.flatpak"
manifest-path: "build-aux/flatpak/dev.mufeed.Wordbook.Devel.json"
run-tests: "true"
cache-key: flatpak-builder-${{ github.sha }}
|