Translate strings-preferences.xml in pl #28
This file contains 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: 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 |