Skip to content

Fixed inline bytecode conflict with users, add source and javadoc whe… #19

Fixed inline bytecode conflict with users, add source and javadoc whe…

Fixed inline bytecode conflict with users, add source and javadoc whe… #19

Workflow file for this run

name: Primary
on:
push:
branches:
- main
pull_request:
branches:
- main
concurrency:
group: ${{ github.ref }}
cancel-in-progress: true
jobs:
build:
name: Build and test
runs-on: ubuntu-latest
steps:
- name: Checkout project
uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: ./.github/actions/setup
- name: Analyse code, build and test everything
env:
SERVICE_ACCOUNT_JSON: ${{ secrets.SERVICE_ACCOUNT_JSON }}
run: ./gradlew build
- name: Publish Unit Test Results
uses: EnricoMi/publish-unit-test-result-action@v2
if: always()
with:
junit_files: "**/build/test-results/**/*.xml"