Skip to content

add test script

add test script #7

Workflow file for this run

name: Shell Env ';ls
on: pull_request
jobs:
pull-request:
name: Shell Env
permissions:
contents: read
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: test script
run: |
set -x
echo $GITHUB_WORKFLOW
echo "$GITHUB_WORKFLOW"
bash -c 'printf "%q\n" "$@"' -- $GITHUB_WORKFLOW
bash -c 'printf "%q\n" "$@"' -- "$GITHUB_WORKFLOW"
echo ${{ github.workflow }}
echo "${{ github.workflow }}"
bash -c 'printf "%q\n" "$@"' -- ${{ github.workflow }}
bash -c 'printf "%q\n" "$@"' -- "${{ github.workflow }}"