Adding code style to a main readme of Diktat (#1909) #135
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: 'Dependencies' | |
on: | |
push: | |
branches: | |
- 'master' | |
env: | |
GRADLE_OPTS: -Dorg.gradle.daemon=true -Dorg.gradle.parallel=true -Dorg.gradle.welcome=never | |
jobs: | |
dependencies: | |
name: 'Dependencies' | |
runs-on: ubuntu-latest | |
# The Dependency Submission API requires write permission. | |
permissions: | |
contents: write | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
# Fetch Git tags, so that semantic version can be calculated. | |
# Alternatively, run `git fetch --prune --unshallow --tags` as the | |
# next step, see | |
# https://github.com/actions/checkout/issues/206#issuecomment-607496604. | |
fetch-depth: 0 | |
- name: 'Set up Java 11' | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'zulu' | |
java-version: 11 | |
- name: 'Run snapshot action' | |
uses: mikepenz/gradle-dependency-submission@v0.9.2 | |
with: | |
use-gradlew: true | |
gradle-build-module: |- | |
:diktat-api | |
:diktat-common-test | |
:diktat-ktlint-engine | |
:diktat-gradle-plugin | |
:diktat-maven-plugin | |
:diktat-rules | |
:diktat-ruleset | |
:diktat-runner | |
:diktat-dev-ksp | |
:diktat-cli | |
gradle-build-configuration: |- | |
compileClasspath | |
sub-module-mode: 'INDIVIDUAL' |