From 9f177f2b7ce490d8ee2be15da2a22cda11e66bb0 Mon Sep 17 00:00:00 2001 From: MSP-Greg Date: Sat, 19 Jun 2021 08:14:22 -0500 Subject: [PATCH] Improve Path info in CI, add workflow_dispatch --- .github/workflows/test.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 4c5610b..cad8705 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -10,6 +10,8 @@ on: - README.md schedule: - cron: '0 7 * * SUN' + workflow_dispatch: + jobs: test: strategy: @@ -40,8 +42,10 @@ jobs: bundler-cache: true - run: ruby -v - name: PATH - shell: bash - run: echo $PATH + shell: pwsh + run: | + # Show PATH with Powershell + $f, $r = $env:PATH.split([IO.Path]::PathSeparator); $r - name: build compiler run: |