Skip to content

bannedFilmList as file defined by config (#902) #575

bannedFilmList as file defined by config (#902)

bannedFilmList as file defined by config (#902) #575

Workflow file for this run

name: Build and test
on: [ push,pull_request ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up JDK 17
uses: actions/setup-java@v1
with:
java-version: 17
java-package: jdk+fx
- name: Build and test with gradle
run: ./gradlew check developTest build
- name: SonarCloud Scan
run: ./gradlew sonarqube -Dsonar.projectKey=mediathekview_MServer -Dsonar.organization=mediathekview -Dsonar.host.url=https://sonarcloud.io -Dsonar.login=$SONAR_TOKEN
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}