diff options
author | Linnea Gräf <nea@nea.moe> | 2024-09-19 21:21:07 +0200 |
---|---|---|
committer | Linnea Gräf <nea@nea.moe> | 2024-09-19 21:21:07 +0200 |
commit | c65cf97ee246bbd58fd49015a428e39b20e34a79 (patch) | |
tree | ff85e7daed73d6b0f7c4b50e591563d8d973da1c /.github/workflows/build.yml | |
parent | ab19e365c1962db5d94b2cc713ab9216024fc80d (diff) | |
download | skyhanni-feat/detekt.tar.gz skyhanni-feat/detekt.tar.bz2 skyhanni-feat/detekt.zip |
Fix composite action not being checked outfeat/detekt
Diffstat (limited to '.github/workflows/build.yml')
-rw-r--r-- | .github/workflows/build.yml | 6 |
1 files changed, 6 insertions, 0 deletions
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: | |