Skip to content

Add logging to help troubleshoot DDB integration #17

Add logging to help troubleshoot DDB integration

Add logging to help troubleshoot DDB integration #17

Workflow file for this run

# This GitHub workflow will automatically build and test code changes
name: Build
on:
# Run when pushing code or config changes to GitHub
push:
paths:
- '**.java'
- '**.yml'
- build.gradle.kts
- settings.gradle.kts
# Run automatically for all pull requests
pull_request:
# Enable running workflow manually from GitHub Actions
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: Check out package
uses: actions/checkout@v4
- name: Build API
uses: ./.github/actions/buildApi
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
github-username: ${{ github.actor }}