feat(ci/cd): Add Android builds and quality checks (#694)

This commit is contained in:
Gauvain
2025-06-02 13:14:20 +02:00
committed by GitHub
parent 5899cc8625
commit ce00aeb5f1
19 changed files with 728 additions and 192 deletions

66
.github/workflows/check_spelling.yaml vendored Normal file
View File

@@ -0,0 +1,66 @@
name: 📝 Check Spelling
on:
push:
branches:
- develop
- master
pull_request_target:
branches:
- develop
- master
types:
- 'opened'
- 'reopened'
- 'synchronize'
jobs:
spelling:
name: 🔎 Spelling Check
permissions:
contents: read
pull-requests: read
actions: read
outputs:
followup: ${{ steps.spelling.outputs.followup }}
runs-on: ubuntu-24.04
concurrency:
group: spelling-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
steps:
- name: 📥 Checkout repository
uses: actions/checkout@v4.2.2
with:
ref: ${{ github.event.pull_request.head.sha || github.sha }}
show-progress: false
submodules: recursive
fetch-depth: 0
- name: 🪄 Run Spelling Checker
id: spelling
uses: check-spelling/check-spelling@main
with:
checkout: true
check_file_names: 1
spell_check_this: check-spelling/spell-check-this@prerelease
post_comment: 0
warnings: bad-regex,deprecated-feature,noisy-file
extra_dictionaries: |
cspell:software-terms/dict/softwareTerms.txt
local:.github/actions/spell-check-this/dictionary.txt
comment-pr:
name: 💬 Report (PR)
runs-on: ubuntu-24.04
needs: spelling
permissions:
pull-requests: write
if: (success() || failure()) && needs.spelling.outputs.followup
steps:
- name: 💬 Post Spelling Report
uses: check-spelling/check-spelling@main
with:
checkout: true
spell_check_this: check-spelling/spell-check-this@prerelease
task: ${{ needs.spelling.outputs.followup }}