Skip to content

up

up #17

Workflow file for this run

name: shell
on: [push, workflow_dispatch]
jobs:
runshell:
runs-on: macos-12
name: Start a Solaris shell
steps:
- name: Starting a solaris VM, please wait. It may take 5 minutes
id: shell
uses: vmactions/solaris-vm@v0
with:
run: |
pwd
ls -lah
whoami
env
cat /etc/release
echo "OK"
- name: Sleep
run: for i in $(seq 1 10) ; do echo $i; sleep 1; done
- uses: neilpang/debugger-action@master