Skip to content

feat(core): add validationOnly mode to prevent change execution #790

feat(core): add validationOnly mode to prevent change execution

feat(core): add validationOnly mode to prevent change execution #790

Workflow file for this run

name: Build
on: [pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout project
uses: actions/checkout@v4
- name: Set up Java
uses: graalvm/setup-graalvm@v1
with:
java-version: '17'
distribution: 'graalvm-community'
github-token: ${{ secrets.FLAMINGOCK_JRELEASER_GITHUB_TOKEN }}
- name: Unit and Integration tests
run: |
./gradlew clean build \
-Psql.test.dialects=mysql
- name: Upload test reports
if: always()
uses: actions/upload-artifact@v4
with:
name: test-reports
path: |
**/build/reports/tests/**
**/build/test-results/**