Skip to content

Translate strings-preferences.xml in pl #28

Translate strings-preferences.xml in pl

Translate strings-preferences.xml in pl #28

Workflow file for this run

name: Build
on:
push:
branches:
- main
- develop
pull_request:
branches:
- develop
jobs:
build:
name: Build and Test
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4.2.2
- name: Setup Java JDK
uses: actions/setup-java@v4.5.0
with:
distribution: 'temurin'
java-version: '17'
cache: 'gradle'
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Build with Gradle
run: ./gradlew build --stacktrace
- name: Run unit tests and jacoco coverage
run: ./gradlew testDebugUnitTest jacocoTestReport --stacktrace
- name: Coveralls GitHub Action
uses: coverallsapp/github-action@v2.3.4
with:
format: jacoco