bitwarden-android/.github/workflows/test.yml

89 lines
2.4 KiB
YAML
Raw Normal View History

2024-05-30 18:01:05 +03:00
name: Test
on:
2024-05-30 18:01:05 +03:00
push:
branches:
- "main"
- "rc"
- "hotfix-rc"
pull_request_target:
types: [opened, synchronize]
merge_group:
type: [checks_requested]
workflow_dispatch:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
JAVA_VERSION: 17
jobs:
2024-05-30 18:01:05 +03:00
check-run:
name: Check PR run
uses: bitwarden/gh-actions/.github/workflows/check-run.yml@main
test:
name: Test
2024-09-30 19:51:05 +03:00
runs-on: ubuntu-24.04
2024-05-30 18:01:05 +03:00
needs: check-run
permissions:
contents: read
issues: write
2024-05-30 18:20:07 +03:00
packages: read
pull-requests: write
2024-05-30 18:01:05 +03:00
steps:
2024-05-30 18:01:05 +03:00
- name: Check out repo
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
with:
2024-05-30 18:01:05 +03:00
ref: ${{ github.event.pull_request.head.sha }}
2024-05-30 18:01:05 +03:00
- name: Validate Gradle wrapper
uses: gradle/actions/wrapper-validation@d156388eb19639ec20ade50009f3d199ce1e2808 # v4.1.0
2024-02-05 21:28:09 +03:00
2024-05-30 18:01:05 +03:00
- name: Cache Gradle files
uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4.0.2
2024-02-05 21:28:09 +03:00
with:
path: |
~/.gradle/caches
~/.gradle/wrapper
2024-03-15 21:37:34 +03:00
key: ${{ runner.os }}-gradle-v2-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties', '**/libs.versions.toml') }}
2024-02-05 21:28:09 +03:00
restore-keys: |
${{ runner.os }}-gradle-v2-
2024-06-01 00:42:38 +03:00
- name: Cache build output
uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4.0.2
with:
path: |
${{ github.workspace }}/build-cache
key: ${{ runner.os }}-build-cache-${{ github.sha }}
restore-keys: |
${{ runner.os }}-build-
- name: Configure Ruby
uses: ruby/setup-ruby@c04af2bb7258bb6a03df1d3c1865998ac9390972 # v1.194.0
with:
bundler-cache: true
- name: Configure JDK
uses: actions/setup-java@b36c23c0d998641eff861008f374ee103c25ac73 # v4.4.0
with:
2024-05-30 18:01:05 +03:00
distribution: "temurin"
java-version: ${{ env.JAVA_VERSION }}
- name: Install Fastlane
run: |
gem install bundler:2.2.27
bundle config path vendor/bundle
bundle install --jobs 4 --retry 3
2024-05-30 18:01:05 +03:00
- name: Build and test
run: |
bundle exec fastlane check
- name: Upload to codecov.io
uses: codecov/codecov-action@e28ff129e5465c2c0dcc6f003fc735cb6ae0c673 # v4.5.0
with:
2024-06-26 23:06:36 +03:00
file: app/build/reports/kover/reportStandardDebug.xml
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}