Skip to content

Translations update from Hosted Weblate #70

Translations update from Hosted Weblate

Translations update from Hosted Weblate #70

Workflow file for this run

name: Run lint checks
on:
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.ref || github.run_id }}
cancel-in-progress: true
jobs:
build:
strategy:
matrix:
version: [full, fdroid]
name: Run lint checks (${{ matrix.version }})
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '17'
- name: Capitalize version name
id: capitalize-version
uses: ASzc/change-string-case-action@v6
with:
string: ${{ matrix.version }}
- name: Set up Gradle
uses: gradle/actions/setup-gradle@v4
- name: Run lint checks
run: ./gradlew lint${{ steps.capitalize-version.outputs.capitalized }}Debug