Skip to content

build(deps): bump the gradle-minor-and-patch group with 2 updates #21

build(deps): bump the gradle-minor-and-patch group with 2 updates

build(deps): bump the gradle-minor-and-patch group with 2 updates #21

Workflow file for this run

name: build
# Runs the full Gradle build and test suite on every push and pull request.
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Check out
uses: actions/checkout@v7
- name: Set up JDK 21
uses: actions/setup-java@v5
with:
distribution: temurin
java-version: '21'
- name: Set up Gradle
uses: gradle/actions/setup-gradle@v6
- name: Build and test
run: ./gradlew build --no-daemon --stacktrace
- name: Upload test reports
if: always()
uses: actions/upload-artifact@v7
with:
name: test-reports
path: '**/build/reports/tests/'
if-no-files-found: ignore