chore(deps): update dependency microsoft.net.test.sdk to 17.11.1 #156
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 }} |