Skip to content

Fix CI

Fix CI #116

Workflow file for this run

name: 'Feature'
on:
push:
branches-ignore:
- 'develop'
- 'master'
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