Skip to content

Bump the all-deps-minor-and-patch group across 1 directory with 3 updates #71

Bump the all-deps-minor-and-patch group across 1 directory with 3 updates

Bump the all-deps-minor-and-patch group across 1 directory with 3 updates #71

name: Build and test Java Test Library
on:
pull_request:
push:
branches: [ "master" ]
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Java
uses: actions/setup-java@v3
with:
distribution: temurin
java-version: 17
- name: Run build
run: ./gradlew build -x test
- name: Run Sonar analysis
env:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: ./gradlew sonar -x test --no-watch-fs