GitHub Actions: rearrange the Build workflow

pull/392/head
Jakub Chrzanowski 10 months ago
parent 9be85b8e62
commit 9f26d955a6
No known key found for this signature in database
GPG Key ID: C39095BFD769862E

@ -173,7 +173,7 @@ jobs:
# Run plugin structure verification along with IntelliJ Plugin Verifier
verify:
name: Verify plugin
needs: [ build, test, inspectCode ]
needs: [ build ]
runs-on: ubuntu-latest
steps:
@ -218,7 +218,7 @@ jobs:
releaseDraft:
name: Release draft
if: github.event_name != 'pull_request'
needs: [ build, verify ]
needs: [ build, test, inspectCode, verify ]
runs-on: ubuntu-latest
permissions:
contents: write

@ -8,6 +8,7 @@
- GitHub Actions: set `gradle-home-cache-cleanup: true` flag to the Gradle Build Action
### Changed
- GitHub Actions: rearrange the Build workflow
- Dependencies - upgrade `org.jetbrains.kotlinx.kover` to `0.7.3`
- Dependencies (GitHub Actions) - upgrade `gradle/wrapper-validation-action` to `v1.1.0`
- Dependencies (GitHub Actions) - upgrade `JetBrains/qodana-action` to `v2023.2.1`

Loading…
Cancel
Save