Skip to content

Bump com.github.spotbugs.snom:spotbugs-gradle-plugin from 5.1.0 to 5.1.1 #172

Bump com.github.spotbugs.snom:spotbugs-gradle-plugin from 5.1.0 to 5.1.1

Bump com.github.spotbugs.snom:spotbugs-gradle-plugin from 5.1.0 to 5.1.1 #172

Workflow file for this run

# Workflow that checks the bootstrap, clean_up and add_service scripts in this repo produce valid code.
name: Test Scripts
on:
pull_request:
branches: [ main ]
workflow_dispatch:
permissions:
contents: read
jobs:
test-scripts:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3
- name: Install zsh
run: sudo apt install zsh
- name: Set up Java
uses: actions/setup-java@cd89f46ac9d01407894225f350157564c9c7cee2 # v3.9.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 static test
- name: Add service
shell: zsh {0}
run: ./.creek/add_service.sh first-service
- name: Check compiles & runs
run: ./gradlew static test
- name: Add 2nd service
shell: zsh {0}
run: ./.creek/add_service.sh second-service
- name: Check compiles & runs
run: ./gradlew static test