diff --git a/.github/workflows/blank.yml b/.github/workflows/blank.yml index f71dbf8..c5226db 100644 --- a/.github/workflows/blank.yml +++ b/.github/workflows/blank.yml @@ -32,18 +32,33 @@ jobs: # Runs a set of commands using the runners shell - name: Run a multi-line script run: | - echo What is in this directory? + echo 1. What is in this directory? ls -a echo - echo Is Java installed? + echo 2. Is Java installed? java -version - echo Is git installed? + echo 3. Is git installed? git --version - echo What about build tools? + echo 4. What about build tools? mvn --version gradle --version ant -version - + echo + echo 5. Where is the Android SDK Root? + echo $ANDROID_SDK_ROOT + echo + echo 6. Where are the Selenium jars? + echo + echo 7. What is the workspace location? + echo $RUNNNER_WORKSPACE + echo + echo 8. Who is running this script? + whoami + echo 9. How is the disc laid out? + df + echo 10. What environment variables are available? + env +