Skip to content

Commit

Permalink
Update build.yml
Browse files Browse the repository at this point in the history
 - Added transition into path "LifeLine"
  • Loading branch information
gleb7499 committed Nov 15, 2024
1 parent a361035 commit fc540a1
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,13 @@ jobs:
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle') }}
restore-keys: ${{ runner.os }}-gradle
- name: Make gradlew executable
run: chmod +x ./gradlew
run: |
cd LifeLine
chmod +x ./gradlew
- name: Build and analyze
env:
GITHUB_TOKEN: ${{ secrets.MY_GITHUB_TOKEN }} # Needed to get PR information, if any
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
run: ./gradlew build sonar --info
run: |
cd LifeLine
./gradlew build sonar --info

0 comments on commit fc540a1

Please sign in to comment.