Bump org.junit-pioneer:junit-pioneer from 2.2.0 to 2.3.0 #390
Workflow file for this run
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
# 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: | |
build-clone: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0 | |
- name: Install zsh | |
run: sudo apt install zsh | |
- name: Set up Java | |
uses: actions/setup-java@b36c23c0d998641eff861008f374ee103c25ac73 # v4.4.0 | |
with: | |
java-version: '16' | |
distribution: 'adopt' | |
cache: gradle | |
- name: Run boostrap script | |
shell: zsh {0} | |
run: ./.specmesh/bootstrap.sh "some-User-name/a_Nother-REpo_name" "some-User-name" | |
- name: Check compiles & runs | |
run: | | |
./gradlew check | |
./gradlew clean | |
- name: Add service | |
shell: zsh {0} | |
run: ./.specmesh/add_service.sh my-service | |
- name: Check compiles & runs | |
run: | | |
./gradlew check | |
./gradlew clean | |
- name: Add 2nd service | |
shell: zsh {0} | |
run: ./.specmesh/add_service.sh other-service | |
- name: Check compiles & runs | |
run: | | |
./gradlew check | |
./gradlew clean |