diff --git a/.github/actions/setup/action.yml b/.github/actions/setup/action.yml index e9ee3ed..6e92368 100644 --- a/.github/actions/setup/action.yml +++ b/.github/actions/setup/action.yml @@ -80,7 +80,17 @@ runs: - name: Run a custom Roswell Script shell: ros -Q -- {0} "$@" - run: ${{ inputs.custom-code }} + run: | + (progn + (ros:ensure-asdf) + #+quicklisp + (ql:quickload '() :silent t)) + + (defun main (args) + (declare (ignorable args)) + (format t "::group::Custom Roswell Script New~%") + ${{ inputs.custom-code }} + (format t "::endgroup::~%")) # - name: Test # shell: bash diff --git a/.github/workflows/install.yml b/.github/workflows/install.yml index 89107b7..153200e 100644 --- a/.github/workflows/install.yml +++ b/.github/workflows/install.yml @@ -66,19 +66,10 @@ jobs: - uses: 40ants/cl-info/.github/actions/setup@custom-action with: custom-code: | - (progn - (ros:ensure-asdf) - #+quicklisp - (ql:quickload '() :silent t)) - - (defun main (args) - (declare (ignore args)) - (format t "::group::Custom Roswell Script~%") - (format t "Lisp: ~A ~A~%ASDF: ~A~%" - (lisp-implementation-version) - (lisp-implementation-type) - (asdf:asdf-version)) - (format t "::endgroup::~%")) + (format t "Lisp: ~A ~A~%ASDF: ~A~%" + (lisp-implementation-version) + (lisp-implementation-type) + (asdf:asdf-version)) # - name: Start SSH session # uses: luchihoratiu/debug-via-ssh@main