Skip to content

Fixed javadoc

Fixed javadoc #108

Workflow file for this run

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

Check failure on line 15 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: 15, Col: 3): Error calling workflow 'ortus-solutions-private/boxlang/.github/workflows/tests.yml@e07800aa70b19f755506005a087a74703bd56dc7'. 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@v3
- name: Setup Java
uses: actions/setup-java@v4
with:
distribution: "temurin"
java-version: 17
- name: Verify Code Formatting
run: ./gradlew spotlessCheck