Skip to content

Commit

Permalink
Tweak build workflow on CI
Browse files Browse the repository at this point in the history
  • Loading branch information
Goooler committed Sep 5, 2024
1 parent 7c4001b commit 7b931a3
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ on:
workflow_dispatch:

jobs:
run-unit-test:
build:
runs-on: ubuntu-latest

steps:
Expand All @@ -37,7 +37,11 @@ jobs:
java-version: '17'
distribution: 'temurin'

- name: Run tests
- name: Run root project build
run: |
./gradlew build --stacktrace
- name: Run plugin build
run: |
echo "Running unit tests"
./gradlew :secrets-gradle-plugin:build check test -x lint --stacktrace
./gradlew :secrets-gradle-plugin:build --stacktrace

0 comments on commit 7b931a3

Please sign in to comment.