Skip to content

Remove SBP_SENDER_ID: it is not used anywhere and can conflict with u… #907

Remove SBP_SENDER_ID: it is not used anywhere and can conflict with u…

Remove SBP_SENDER_ID: it is not used anywhere and can conflict with u… #907

Workflow file for this run

name: Java
on:
workflow_dispatch:
push:
branches:
- master
- staging
tags:
- "*"
pull_request:
paths:
- "java/**"
- .github/workflows/java.yaml
jobs:
tests-java-1_8:
name: Test
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- uses: gradle/gradle-build-action@v2
with:
gradle-version: 7.1.1
- name: Run tests
run: make test-java
sonarqube:
name: SonarQube
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- uses: gradle/gradle-build-action@v2
with:
gradle-version: 7.1.1
- name: Run tests
run: make test-java
- name: Run sonarqube
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
run: (cd java && gradle sonarqube)