File: CI.yml

package info (click to toggle)
wordbook 0.6.0-2
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 752 kB
  • sloc: python: 1,460; xml: 9; makefile: 2
file content (25 lines) | stat: -rw-r--r-- 691 bytes parent folder | download | duplicates (2)
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 }}