feat: Add consolidation to cbmigrations #19
Workflow file for this run
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: Tests | |
| on: | |
| push: | |
| branches: | |
| - master | |
| - development | |
| pull_request: | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| jobs: | |
| test: | |
| name: TestBox Suite | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| - name: Setup CommandBox | |
| uses: ortus-boxlang/setup-boxlang@main | |
| with: | |
| with-commandbox: true | |
| - name: Install dependencies | |
| run: box install | |
| - name: Run tests | |
| run: box run-script test |