Add logging to help troubleshoot DDB integration #17
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # 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 }} |