fix missing quotation mark in ar.po #589
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: | |
push: | |
branches: [master] | |
pull_request: | |
name: CI | |
jobs: | |
codespell: | |
name: Spelling check | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: codespell-project/actions-codespell@master | |
with: | |
skip: help,po | |
ignore_words_list: sur,correspondant,sais | |
flatpak-builder: | |
name: Flatpak Builder | |
runs-on: ubuntu-latest | |
container: | |
image: bilelmoussaoui/flatpak-github-actions:gnome-41 | |
options: --privileged | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: bilelmoussaoui/flatpak-github-actions/flatpak-builder@v4 | |
with: | |
bundle: drawing.flatpak | |
manifest-path: com.github.maoschanz.drawing.json | |
run-tests: true |