diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 6a8af21a..18e92155 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -24,5 +24,10 @@ jobs: Invoke-Expression (New-Object System.Net.WebClient).DownloadString('https://get.scoop.sh') scoop bucket add extras scoop install task - - name: Run CI Task + - name: Run CI Task (Linux/macOS) + if: runner.os != 'Windows' + run: ./bin/task ci + - name: Run CI Task (Windows) + if: runner.os == 'Windows' run: task ci +