Skip to content

Commit

Permalink
Add project config value for fossa-action
Browse files Browse the repository at this point in the history
  • Loading branch information
evansims committed Apr 1, 2024
1 parent bb85891 commit ff0d0aa
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/checks.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Checks
name: Checks

on: [pull_request, push]

Expand All @@ -10,8 +10,8 @@ jobs:
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'temurin'
java-version: "17"
distribution: "temurin"
- name: Install dependencies
run: ./gradlew build
- name: Run FOSSA scan and upload build data
Expand All @@ -23,6 +23,7 @@ jobs:
uses: fossas/fossa-action@main
with:
api-key: ${{ secrets.FOSSA_API_KEY }}
project: spring-boot-starter
run-tests: true
build:
name: Run Checks
Expand All @@ -35,7 +36,7 @@ jobs:
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'temurin'
java-version: "17"
distribution: "temurin"
- name: Run Gradle check task
run: ./gradlew check --continue

0 comments on commit ff0d0aa

Please sign in to comment.