Skip to content

Updates for file app/src/main/res/values/strings.xml in bn_BD [Manual Sync] #15258

Updates for file app/src/main/res/values/strings.xml in bn_BD [Manual Sync]

Updates for file app/src/main/res/values/strings.xml in bn_BD [Manual Sync] #15258

Workflow file for this run

name: CI Checks
on:
pull_request:
workflow_call:
inputs:
run-build-checks:
default: true
type: boolean
description: True to run build checks
concurrency:
group: ci-${{ github.head_ref }}
cancel-in-progress: true
jobs:
verify_pr_has_story_link:
runs-on: [ ubuntu-latest ]
if: github.event_name == 'pull_request'
steps:
- uses: actions/checkout@v4
- name: Verify PR description
run: .github/scripts/story_link_check.sh '${{ github.event.pull_request.body }}'
verify_changelog_was_updated:
runs-on: [ ubuntu-latest ]
if: github.event_name == 'pull_request'
steps:
- name: Checkout master
uses: actions/checkout@v4
with:
ref: master
path: master
- name: Checkout current
uses: actions/checkout@v4
with:
path: current
- name: Verify CHANGELOG was updated
run: current/.github/scripts/verify_file_was_changed.sh master/CHANGELOG.md current/CHANGELOG.md
lint:
runs-on: [ ubuntu-latest ]
steps:
- uses: actions/checkout@v4
- name: Setup JDK
uses: actions/setup-java@v4
with:
distribution: 'zulu'
java-version: 17
cache: 'gradle'
- name: QA Lint
run: ./gradlew --build-cache --no-daemon lint
unit_tests:
runs-on: [ ubuntu-latest ]
steps:
- uses: actions/checkout@v4
- name: Setup JDK
uses: actions/setup-java@v4
with:
distribution: 'zulu'
java-version: 17
cache: 'gradle'
- name: Unit Tests
run: |
./gradlew --build-cache --no-daemon test -x :app:test;
./gradlew --build-cache --no-daemon testQaDebugUnitTest;
# TODO: Add Android integration tests once [SC-13775] is resolved
verify_room_schemas:
runs-on: [ ubuntu-latest ]
steps:
- name: Checkout master
uses: actions/checkout@v4
with:
ref: master
path: master
- name: Checkout current
uses: actions/checkout@v4
with:
path: current
- name: Verify existing Room schemas are not modified
run: current/.github/scripts/compare_directory_contents.sh master/app/schemas/org.simple.clinic.AppDatabase current/app/schemas/org.simple.clinic.AppDatabase
fix_strings_ellipsise:
runs-on: [ ubuntu-latest ]
if: github.event_name == 'pull_request'
steps:
- uses: actions/checkout@v4
with:
ref: ${{github.event.pull_request.head.ref}}
fetch-depth: 0
token: ${{ secrets.SERVICES_ACCESS_TOKEN }}
- name: Fix ellipsise in strings
run: .github/scripts/strings_reader.py
- name: Commit and push
env:
USER_NAME: ${{ secrets.USER_NAME }}
USER_EMAIL: ${{ secrets.USER_EMAIL }}
run: .github/scripts/commit_and_push_string_fixes.sh