Skip to content

Update Gradle Wrapper from 8.2 to 8.2.1 #89

Update Gradle Wrapper from 8.2 to 8.2.1

Update Gradle Wrapper from 8.2 to 8.2.1 #89

Workflow file for this run

name: build
on:
workflow_dispatch:
workflow_call:
push:
branches:
- main
pull_request:
branches:
- main
permissions:
checks: write
pull-requests: write
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Setup host
uses: ./.github/workflows/setup-host
- name: Test & Build
run: ./gradlew -s build
- name: Publish Test Report
uses: mikepenz/action-junit-report@v3
if: always()
with:
report_paths: '**/build/test-results/*/TEST-*.xml'
- name: Coverage report
uses: codecov/codecov-action@v3