Skip to content

More transaction event setup and debugging #4

More transaction event setup and debugging

More transaction event setup and debugging #4

Workflow file for this run

name: Pull Requests
on:
push:
branches-ignore:
- "main"
- "master"
- "development"
- "releases/v*"
pull_request:
branches:
- "releases/v*"
- development
jobs:
tests:

Check failure on line 16 in .github/workflows/pr.yml

View workflow run for this annotation

GitHub Actions / Pull Requests

Invalid workflow file

The workflow is not valid. .github/workflows/pr.yml (Line: 16, Col: 3): Error calling workflow 'ortus-boxlang/bx-orm/.github/workflows/tests.yml@c8113f83da7b5f4a7dee4f2ed91289a6ab85ffc7'. The nested job 'publish-test-results' is requesting 'checks: write, issues: read, pull-requests: write', but is only allowed 'checks: none, issues: none, pull-requests: none'.
uses: ./.github/workflows/tests.yml
secrets: inherit
format_check:
name: Checks Source Code Formatting
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Setup Java
uses: actions/setup-java@v4
with:
distribution: "temurin"
java-version: 21
- name: Verify Code Formatting
run: ./gradlew spotlessCheck