Skip to content

Update dependencies and build #121

Update dependencies and build

Update dependencies and build #121

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@v3
with:
fetch-depth: 0
- uses: actions/setup-java@v3
with:
java-version: '11'
distribution: adopt
- name: Build & Test
uses: burrunan/gradle-cache-action@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
with:
job-id: jdk11-build-test
arguments: check sonar
- name: Report Tests
uses: dorny/test-reporter@v1
if: success() || failure()
with:
name: Tests Results
path: "**/build/test-results/*/*.xml"
reporter: java-junit