createDateTime overload for ACF/Lucee #1
Workflow file for this run
This file contains 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
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 GitHub Actions / Pull RequestsInvalid workflow file
|
||
uses: ./.github/workflows/tests.yml | ||
secrets: inherit | ||
# Format PR | ||
format_check: | ||
name: Checks Source Code Formatting | ||
runs-on: ubuntu-20.04 | ||
steps: | ||
- name: Checkout Repository | ||
uses: actions/checkout@v4 | ||
- name: Setup Java | ||
uses: actions/setup-java@v4 | ||
with: | ||
distribution: "temurin" | ||
java-version: 17 | ||
- uses: Ortus-Solutions/commandbox-action@v1.0.2 | ||
with: | ||
cmd: run-script format:check | ||
- name: Verify Code Formatting | ||
run: ./gradlew spotlessCheck |