update logout instructions #491
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
name: Testing Cloud-Hosted-Guide-Converter | |
on: [push] | |
jobs: | |
prereqs: | |
name: Testing GuideConverter | |
runs-on: ubuntu-latest | |
steps: | |
# Any prerequisite steps | |
- uses: actions/checkout@main | |
- name: Checkout guide-getting-started | |
uses: actions/checkout@v2 | |
with: | |
repository: OpenLiberty/guide-getting-started | |
path: guide-getting-started | |
- name: Checkout guide-microprofile-reactive-messaging-acknowledgment | |
uses: actions/checkout@v2 | |
with: | |
repository: OpenLiberty/guide-microprofile-reactive-messaging-acknowledgment | |
path: guide-microprofile-reactive-messaging-acknowledgment | |
- name: Checkout guides-common repo | |
uses: actions/checkout@v2 | |
with: | |
repository: OpenLiberty/guides-common | |
path: guides-common | |
- uses: actions/setup-java@v1 | |
with: | |
java-version: '15' # The JDK version to make available on the path. | |
java-package: jdk # (jre, jdk, or jdk+fx) - defaults to jdk | |
architecture: x64 # (x64 or x86) - defaults to x64 | |
- name: Testing with Maven | |
run: mvn -Dtest=TestMain test | |
- name: Post tests | |
if: always() | |
run: | | |
echo ===testing-clone-method.md=== | |
cat testing-clone-method.md | |
echo ===clone.md=== | |
cat clone.md |