fix: when non-transactional change doesn't provide rollback method, i… #113
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 Master | |
| on: | |
| push: | |
| branches: [ master, release/* ] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout project | |
| uses: actions/checkout@v2 | |
| - 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 |