This repository has been archived by the owner on Jul 18, 2024. It is now read-only.
edit #5
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: Unit tests | |
on: | |
pull_request: | |
workflow_dispatch: | |
# Cancel in-progress PR verification workflows. We only care about verifying the latest commit. | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number }} | |
cancel-in-progress: true | |
jobs: | |
unit_tests: | |
name: unit tests | |
runs-on: ubuntu-latest | |
container: | |
image: fedora:38 | |
steps: | |
- name: Install dependencies | |
shell: bash | |
run: dnf --setopt install_weak_deps=False install -y gettext git-core | |
- name: Check out repository | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
ref: ${{ github.event.pull_request.head.sha }} | |
- name: Rebase | |
uses: ./.github/actions/rebase | |
- name: Set Environment Variables | |
uses: ./.github/actions/set_vars | |
with: | |
varFilePath: ./.github/variables/pr_verification.env | |
- name: Set up Java | |
uses: actions/setup-java@v4 | |
with: | |
distribution: ${{ env.JAVA_DISTRIBUTION }} | |
java-version: ${{ env.JAVA_VERSION }} | |
- name: Run unit tests | |
uses: gradle/gradle-build-action@v3 | |
with: | |
arguments: test coverage | |
- name: Save PR number to file | |
run: echo ${{ github.event.number }} > PR_NUMBER.txt | |
- name: Archive PR number | |
uses: actions/upload-artifact@v4 | |
with: | |
name: pr_number | |
path: PR_NUMBER.txt | |
- name: Archive reports | |
uses: actions/upload-artifact@v4 | |
with: | |
name: unit_test_reports | |
path: | | |
**/build/**/jacoco*.xml |