Skip to content

refactor: upgrade gradle & java compatibility #296

refactor: upgrade gradle & java compatibility

refactor: upgrade gradle & java compatibility #296

Workflow file for this run

name: Test
on:
push:
branches:
- "master"
- "develop"
pull_request:
types: [ready_for_review, synchronize, opened]
jobs:
format:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
with:
ref: ${{ github.head_ref }}
- name: Use Java 17
uses: actions/setup-java@v3
with:
distribution: "temurin"
java-version: "17"
cache: "gradle"
- name: Format code
run: ./gradlew formatCode
- name: Commit fixed code
uses: stefanzweifel/git-auto-commit-action@v4
with:
commit_message: "style: resolve style guide violations"
branch: ${{ github.head_ref }}
unit:
runs-on: ubuntu-latest
strategy:
matrix:
java: [17, 18, 19, 20, 21]
steps:
- name: Checkout code
uses: actions/checkout@v3
with:
ref: ${{ github.head_ref }}
- name: Use Java Version ${{ matrix.java }}
uses: actions/setup-java@v3
with:
distribution: "temurin"
java-version: ${{ matrix.java }}
cache: "gradle"
- name: Install Dependencies
run: ./gradlew dependencies
- name: Run Tests
run: ./gradlew test jacocoTestReport
- name: Upload Test Results
uses: actions/upload-artifact@v3
with:
name: test-results
path: build/reports/tests/test
- name: Upload Coverage Report
uses: actions/upload-artifact@v3
with:
name: code-coverage-report
path: build/reports/jacoco/test/html
- name: Upload Jacoco XML Report
uses: actions/upload-artifact@v3
with:
name: jacoco-xml-report
path: build/reports/jacoco/test/jacocoTestReport.xml
- name: Codecov
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: build/reports/jacoco/test/jacocoTestReport.xml
fail_ci_if_error: true