Skip to content

Enable publishing to maven central (#97) #223

Enable publishing to maven central (#97)

Enable publishing to maven central (#97) #223

Workflow file for this run

name: Test
on:
push:
branches: [ main ]
pull_request: {}
jobs:
run_tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: gradle/wrapper-validation-action@v1
- uses: actions/[email protected]
with:
distribution: 'zulu'
java-version: 17
- name: Run tests
run: ./gradlew check --stacktrace
- name: Store Test Results
uses: actions/upload-artifact@v3
if: failure()
with:
name: error-report
path: "**/build/reports/tests/test/**/*.html"
bundle_sample:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: gradle/wrapper-validation-action@v1
- uses: actions/[email protected]
with:
distribution: 'zulu'
java-version: 17
- name: Bundle Sample Project
# TODO: Remove the extra runtime build command
run: |
./gradlew :runtime:build
./gradlew -p sample app:bundleRelease