Initial implementation of structKeyArray( array ) and array.keyArray() #407
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: BoxLang Snapshots | |
on: | |
push: | |
branches: | |
- development | |
jobs: | |
############################################# | |
# Tests First baby! We fail, no build :( | |
############################################# | |
tests: | |
uses: ./.github/workflows/tests.yml | |
secrets: inherit | |
permissions: | |
checks: write | |
pull-requests: write | |
contents: read | |
issues: read | |
########################################################################################## | |
# Format Source Code | |
########################################################################################## | |
format: | |
name: Code Auto-Formatting | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
checks: write | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup Java | |
uses: actions/setup-java@v4 | |
with: | |
distribution: "temurin" | |
java-version: 17 | |
- name: Verify Code Formatting | |
run: ./gradlew spotlessApply --stacktrace | |
############################################# | |
# Build Snapshot Release | |
############################################# | |
build: | |
uses: ./.github/workflows/release.yml | |
needs: [ tests, format ] | |
secrets: inherit | |
permissions: | |
checks: write | |
contents: write | |
with: | |
snapshot: true |