Bump actions/deploy-pages from 2.0.3 to 2.0.4 #177
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
# 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 |