diff --git a/.github/workflows/powershell-install.yml b/.github/workflows/powershell-install.yml new file mode 100644 index 0000000..a6e31ea --- /dev/null +++ b/.github/workflows/powershell-install.yml @@ -0,0 +1,14 @@ +on: [push] +name: CI +jobs: + build: + strategy: + matrix: + os: [ubuntu-latest] + runs-on: ${{ matrix.os }} + steps: + - name: powershell install + shell: pwsh + run: | + Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://raw.githubusercontent.com/kevincobain2000/gobrew/master/git.io.ps1')) +