linting #7
This file contains hidden or 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: Build Snapshot Release | |
| on: | |
| push: | |
| branches: | |
| - 'development' | |
| # Unique group name per workflow-branch/tag combo | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| ########################################################################################## | |
| # Tests | |
| ########################################################################################## | |
| tests: | |
| secrets: inherit | |
| uses: ./.github/workflows/tests.yml | |
| ########################################################################################## | |
| # Format Source Code | |
| ########################################################################################## | |
| # Will enable once we have more testing in. | |
| # format: | |
| # name: Code Auto-Formatting | |
| # runs-on: ubuntu-latest | |
| # steps: | |
| # - uses: actions/checkout@v6 | |
| # - name: Setup CommandBox CLI | |
| # uses: Ortus-Solutions/setup-commandbox@v2.0.1 | |
| # - name: Auto-format | |
| # run: | | |
| # box install commandbox-cfformat | |
| # box run-script format | |
| # - name: Commit Format Changes | |
| # uses: stefanzweifel/git-auto-commit-action@v4 | |
| # with: | |
| # commit_message: Apply cfformat changes | |
| # push_options: --force | |
| ########################################################################################## | |
| # Release it | |
| ########################################################################################## | |
| release: | |
| uses: ./.github/workflows/release.yml | |
| needs: [ tests ] | |
| secrets: inherit | |
| with: | |
| snapshot: true |