Skip to content

Translations update from Hosted Weblate #1698

Translations update from Hosted Weblate

Translations update from Hosted Weblate #1698

Workflow file for this run

name: PR Check
on:
pull_request:
branches: [ master ]
paths-ignore:
- 'fastlane/**'
- '.github/**'
- 'icons/**'
- 'images/**'
- 'scripts/**'
- 'whatsnew/**'
- '**.md'
- '**.MD'
jobs:
validate-pr:
name: 'Spotless, Tests and Build Production Debug Build'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setting up project
uses: ./.github/actions/setup
- name: 🛠 Build Project with Spotless Check
run: ./gradlew spotlessCheck
- name: 🧪 Run Tests
run: ./gradlew test
- name: 🏗 Build APK
run: bash ./gradlew assembleFreeDebug
- name: 🚀 Upload APK to Artifacts 📱
uses: actions/upload-artifact@v4
with:
name: app
path: app/build/outputs/apk/free/debug/*.apk
retention-days: 3