Skip to content

COLDBOX-1247 #resolve #391

COLDBOX-1247 #resolve

COLDBOX-1247 #resolve #391

Workflow file for this run

# This workflow tests the ColdBox code using many permutations in the matrix.
# If successful, then it creates the bleeding edge artifact and publishes it to S3 and ForgeBox
name: ColdBox Snapshots
on:
push:
branches:
- development
jobs:
#############################################
# Tests First baby! We fail, no build :(
#############################################
tests:
uses: ./.github/workflows/tests.yml
secrets: inherit
##########################################################################################
# Format Source Code
##########################################################################################
format:
name: Code Auto-Formatting
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- name: Auto-format
uses: Ortus-Solutions/[email protected]
with:
cmd: run-script format
- name: Commit Format Changes
uses: stefanzweifel/git-auto-commit-action@v4
with:
commit_message: Apply cfformat changes
push_options: --force
#############################################
# Build Snapshot Release
#############################################
build:
uses: ./.github/workflows/release.yml
needs: [ tests, format ]
secrets: inherit
with:
snapshot: true