Skip to content

Update experiment.yaml #15

Update experiment.yaml

Update experiment.yaml #15

Workflow file for this run

name: Experiment
on:
push:
workflow_call:
jobs:
experiment:
runs-on: ubuntu-latest
steps:
- run: pstree -c -l
- run: |
cat /proc/$$/cmdline | tr '\000-\037' ' '
cat /proc/$PPID/cmdline | tr '\000-\037' ' '
- name: read
env:
FOO: BAR
run: |
echo "$0"
ls -la "$0"
cat "$0"
echo "$0" | rev | cut -d / -f 2- | rev | xargs ls -la
for file in $(echo "$0" | rev | cut -d / -f 2- | rev | xargs find); do
if [ -d "$file" ]; then continue; fi
echo "### $file"
cat "$file"
done
- run: printenv
- run: set