Skip to content

Bump com.diffplug.spotless:spotless-plugin-gradle from 6.21.0 to 6.22.0 #363

Bump com.diffplug.spotless:spotless-plugin-gradle from 6.21.0 to 6.22.0

Bump com.diffplug.spotless:spotless-plugin-gradle from 6.21.0 to 6.22.0 #363

Workflow file for this run

# Checks the repo builds correctly once the bootstrap & init template has run...
name: Test Scripts
on:
pull_request:
branches: [ main ]
workflow_dispatch:
permissions:
contents: read
jobs:
test-scripts:
if: ${{ github.repository == 'creek-service/aggregate-template' }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0
- name: Install zsh
run: sudo apt install zsh
- name: Set up Java
uses: actions/setup-java@0ab4596768b603586c0de567f2430c30f5b0d2b0 # v3.13.0
with:
java-version: '17'
distribution: 'adopt'
cache: gradle
- name: Run boostrap script
shell: zsh {0}
run: ./.creek/bootstrap.sh "some-User-name/a_Nother-REpo_name" "some-User-name"
- name: Check compiles & runs
run: ./gradlew format check
- name: Clean
run: ./gradlew clean
- name: Run clean_up script
shell: zsh {0}
run: ./.creek/clean_up.sh
- name: Check compiles & runs
run: ./gradlew format check
- name: Clean
run: ./gradlew clean
- name: Add service
shell: zsh {0}
run: ./.creek/add_service.sh first-service
- name: Check compiles & runs
run: ./gradlew format check
- name: Clean
run: ./gradlew clean
- name: Add 2nd service
shell: zsh {0}
run: ./.creek/add_service.sh second-service
- name: Check compiles & runs
run: ./gradlew format check