Skip to content

Update go.yml

Update go.yml #33

Workflow file for this run

name: Setup GO
on: push
jobs:
test_with_PR:
strategy:
fail-fast: false
matrix:
os: [windows-latest, windows-2019, self-hosted]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Echo environment variables using PowerShell
run: |
echo "=== Print Environment Variables in PowerShell ==="
Get-ChildItem Env:
- name: setup-go
uses: priyagupta108/setup-go@selfhosted-validation
with:
go-version: 1.22
test_with_v5:
strategy:
fail-fast: false
matrix:
os: [windows-latest, windows-2019, self-hosted, ubuntu-latest, ubuntu-22.04, macos-latest, macos-13]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: setup-go
uses: actions/setup-go@v5
with:
go-version: 1.23