Skip to content

Bump org.springframework.boot:spring-boot-gradle-plugin from 3.2.2 to 3.2.3 #273

Bump org.springframework.boot:spring-boot-gradle-plugin from 3.2.2 to 3.2.3

Bump org.springframework.boot:spring-boot-gradle-plugin from 3.2.2 to 3.2.3 #273

Workflow file for this run

name: build
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
env:
DISPLAY: :99
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout GitHub repo
uses: actions/checkout@v2
- name: Set up Java
uses: actions/setup-java@v1
with:
java-version: 17
- name: Start Xvfb
run: Xvfb :99 &
- name: Test with Maven
run: mvn -B test
- name: Test with Gradle
run: ./gradlew test
- name: Upload analysis to SonarCloud
if: success() && !contains(github.ref, 'pull')
run: >
mvn -B sonar:sonar
-Dsonar.host.url=https://sonarcloud.io
-Dsonar.organization=bonigarcia-github
-Dsonar.projectKey=io.github.bonigarcia:rate-my-cat
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v1