Translations update from Hosted Weblate #419
Workflow file for this run
This file contains hidden or 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
| name: Test | |
| on: | |
| pull_request: | |
| # Due to a flutter bug, flutter build is not generating localizations | |
| # workaround by always running flutter pub get immediately before building, | |
| # and performing build for msix:create manually to allow implementing this workaround | |
| jobs: | |
| check-formatting: | |
| name: Ensure correct formatting | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Setup Java | |
| uses: actions/setup-java@v4 | |
| with: | |
| distribution: 'zulu' | |
| java-version: '17' | |
| - name: Install dependencies | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install -y build-essential cmake ninja-build libgtk-3-dev | |
| - name: Set up Flutter | |
| uses: subosito/flutter-action@v2 | |
| with: | |
| channel: 'stable' | |
| - name: Verify Flutter setup | |
| run: flutter doctor | |
| - name: Get dependencies | |
| run: flutter pub get | |
| - name: Verify code formatting | |
| run: | | |
| # Format locally generated localization files to prevent false positives | |
| dart format lib/l10n/ | |
| dart format --output=none --set-exit-if-changed lib/ |