Skip to content

Update dependencies and build #123

Update dependencies and build

Update dependencies and build #123

Workflow file for this run

name: CI
on:
push:
branches: [ main ]
pull_request:
types: [ opened, synchronize, reopened ]
branches: [ main ]
jobs:
build-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-java@v4
with:
java-version: '21'
distribution: temurin
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v3
- name: Build & Test
run: ./gradlew check sonar
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
- name: Report Tests
uses: dorny/test-reporter@v1
if: success() || failure()
with:
name: Tests Results
path: "**/build/test-results/*/*.xml"
reporter: java-junit