Skip to content

docs: fix readme

docs: fix readme #13

Workflow file for this run

name: CI Pull Request
on:
push:
branches:
- 'main'
pull_request:
env:
APP_ID: com.example.SuperDev2007.SomeApp
jobs:
# lint:
# name: Lint Check
# runs-on: ubuntu-latest
# container:
# image: valalang/lint
# steps:
# - name: Checkout repository
# uses: actions/checkout@v4
# - name: Lint
# run: io.elementary.vala-lint -d .
test-build:
name: Test Build
runs-on: ubuntu-latest
# needs: lint
container:
image: bilelmoussaoui/flatpak-github-actions:gnome-46
options: --privileged
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Replace patterns
run: sh setup-space.sh ${{ env.APP_ID }}
- name: Run tests and lint
uses: flatpak/flatpak-github-actions/flatpak-builder@v6
with:
bundle: ${{ env.APP_ID }}.flatpak
manifest-path: build-aux/flatpak/${{ env.APP_ID }}-Devel.json
# run-tests: true
cache-key: flatpak-builder-${{ github.sha }}