aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLinnea Gräf <nea@nea.moe>2024-09-19 21:21:07 +0200
committerLinnea Gräf <nea@nea.moe>2024-09-19 21:21:07 +0200
commitc65cf97ee246bbd58fd49015a428e39b20e34a79 (patch)
treeff85e7daed73d6b0f7c4b50e591563d8d973da1c
parentab19e365c1962db5d94b2cc713ab9216024fc80d (diff)
downloadskyhanni-c65cf97ee246bbd58fd49015a428e39b20e34a79.tar.gz
skyhanni-c65cf97ee246bbd58fd49015a428e39b20e34a79.tar.bz2
skyhanni-c65cf97ee246bbd58fd49015a428e39b20e34a79.zip
Fix composite action not being checked outfeat/detekt
-rw-r--r--.github/actions/setup-normal-workspace/action.yml2
-rw-r--r--.github/workflows/build.yml6
2 files changed, 6 insertions, 2 deletions
diff --git a/.github/actions/setup-normal-workspace/action.yml b/.github/actions/setup-normal-workspace/action.yml
index 100aa9b03..a0781d53c 100644
--- a/.github/actions/setup-normal-workspace/action.yml
+++ b/.github/actions/setup-normal-workspace/action.yml
@@ -3,8 +3,6 @@ name: 'Setup Java, Gradle and check out the source code'
runs:
using: composite
steps:
- - name: Checkout code
- uses: actions/checkout@v4
- name: Set up JDK 21
uses: actions/setup-java@v4
with:
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index d1af96882..bae846e07 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -18,6 +18,8 @@ jobs:
runs-on: ubuntu-latest
name: "Build and test"
steps:
+ - name: Checkout code
+ uses: actions/checkout@v4
- uses: ./.github/actions/setup-normal-workspace
- name: Build with Gradle
run: ./gradlew assemble -x test --stacktrace
@@ -39,6 +41,8 @@ jobs:
runs-on: ubuntu-latest
steps:
+ - name: Checkout code
+ uses: actions/checkout@v4
- uses: ./.github/actions/setup-normal-workspace
- name: Run detekt
run: |
@@ -69,6 +73,8 @@ jobs:
runs-on: ubuntu-latest
name: "Build multi version"
steps:
+ - name: Checkout code
+ uses: actions/checkout@v4
- uses: ./.github/actions/setup-normal-workspace
- name: Enable preprocessor
run: |