fix(deps): update dependency io.sentry:sentry-android to v8.1.0 #15265
Workflow file for this run
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: 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 |