Skip to content

Upgrade gradle and dependencies #22

Upgrade gradle and dependencies

Upgrade gradle and dependencies #22

Workflow file for this run

name: 'Develop'
on:
push:
branches:
- 'develop'
jobs:
build-feature:
runs-on: ubuntu-latest
steps:
- name: git checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up JDK
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'adopt'
- name: build
run: ./gradlew clean assemble
- name: test
run: ./gradlew check
- name: sonar analysis
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
run: ./gradlew sonarqube