fix(deps): update dependency androidx.fragment:fragment-ktx to v1.8.5 #256
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: Pull Requests | |
"on": | |
merge_group: | |
types: [checks_requested] | |
pull_request: | |
branches: | |
- master | |
paths: | |
- ".github/workflows/**" | |
- "project/app/src/**" | |
- "project/app/*.pro" | |
- "project/buildSrc/src/**" | |
- "project/*.gradle.kts" | |
- "project/app/*.gradle.kts" | |
- "project/gradle.properties" | |
- "project/gradle/wrapper/gradle-wrapper.properties" | |
- "project/gradle/libs.versions.toml" | |
jobs: | |
build-test-lint: | |
name: Build, Test, and Lint | |
permissions: | |
contents: read | |
checks: write | |
uses: ./.github/workflows/build-test-lint.yaml | |
secrets: inherit | |
espresso-test: | |
name: Espresso Test | |
permissions: | |
contents: read | |
checks: write | |
uses: ./.github/workflows/espresso.yaml | |
secrets: inherit | |
needs: | |
- build-test-lint | |
pr-checkpoint-status: | |
name: "PR Checkpoint Status" | |
runs-on: ubuntu-latest | |
needs: [build-test-lint, espresso-test] | |
steps: | |
- run: | | |
echo "PR Checkpoint Status. Noop" |