2023-09-11 23:51:59 +03:00
|
|
|
---
|
|
|
|
name: Run Check
|
|
|
|
|
|
|
|
on:
|
|
|
|
pull_request:
|
|
|
|
|
|
|
|
env:
|
2023-09-15 00:27:34 +03:00
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
2023-09-11 23:51:59 +03:00
|
|
|
JAVA_VERSION: 17
|
2023-10-16 18:12:39 +03:00
|
|
|
RUBY_VERSION: 3.2.2
|
2023-09-11 23:51:59 +03:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
test:
|
|
|
|
name: Test
|
|
|
|
runs-on: ubuntu-22.04
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
2023-10-23 16:30:29 +03:00
|
|
|
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
|
2023-09-11 23:51:59 +03:00
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
|
|
|
# Allow subsequent steps to trigger GitHub Actions via git push
|
|
|
|
# https://github.community/t/push-from-action-even-with-pat-does-not-trigger-action/17622
|
|
|
|
persist-credentials: false
|
|
|
|
|
2023-10-16 18:12:39 +03:00
|
|
|
- name: Configure Ruby
|
2024-01-02 23:03:36 +03:00
|
|
|
uses: ruby/setup-ruby@360dc864d5da99d54fcb8e9148c14a84b90d3e88 # v1.165.1
|
2023-10-16 18:12:39 +03:00
|
|
|
with:
|
|
|
|
bundler-cache: true
|
|
|
|
ruby-version: ${{ env.RUBY_VERSION }}
|
|
|
|
|
2023-09-11 23:51:59 +03:00
|
|
|
- name: Configure JDK
|
2023-12-05 17:58:58 +03:00
|
|
|
uses: actions/setup-java@387ac29b308b003ca37ba93a6cab5eb57c8f5f93 # v4.0.0
|
2023-09-11 23:51:59 +03:00
|
|
|
with:
|
|
|
|
distribution: 'temurin'
|
|
|
|
java-version: ${{ env.JAVA_VERSION }}
|
|
|
|
|
|
|
|
- name: Build and Run Check
|
|
|
|
# Run checks while excluding release-build tests, which are not configured to work properly
|
|
|
|
# with the Compose testing library.
|
2023-12-29 00:09:04 +03:00
|
|
|
run: ./gradlew check -x testStandardRelease -x testFdroidDebug -x testFdroidRelease koverXmlReportStandardDebug
|
2023-10-16 18:12:39 +03:00
|
|
|
|
|
|
|
- name: Danger
|
|
|
|
env:
|
|
|
|
DANGER_GITHUB_API_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
run: bundle exec danger
|