chore(deps): update dependency nuke.common to v9 #181
This file contains 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: continuous integration | |
on: | |
workflow_dispatch: | |
pull_request: | |
branches: [main] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
integration: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout sources | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Verify using nuke | |
run: JAVA_HOME=$JAVA_HOME_21_X64 ./build.sh Clean Sonarqube | |
env: | |
SONAR_TOKEN: ${{ secrets.sonar_token }} |