diff --git a/.github/workflows/go-test-darwin.yaml b/.github/workflows/go-test-darwin.yaml index 93f955d..037e19b 100644 --- a/.github/workflows/go-test-darwin.yaml +++ b/.github/workflows/go-test-darwin.yaml @@ -6,16 +6,17 @@ name: go-test-darwin.yaml on: [push] env: - LD_LIBRARY_PATH: /opt/senzing/g2/lib:/opt/senzing/g2/lib/macos DYLD_LIBRARY_PATH: /opt/senzing/g2/lib:/opt/senzing/g2/lib/macos + LD_LIBRARY_PATH: /opt/senzing/g2/lib:/opt/senzing/g2/lib/macos jobs: go-test-darwin: - runs-on: macos-latest + runs-on: ${{ matrix.os }} strategy: matrix: go: ["1.21"] - name: Go ${{ matrix.go }} - darwin + os: [macos-latest] + name: "go ... with OS: ${{ matrix.os }}; Go: ${{ matrix.go }}" steps: - name: Checkout repository uses: actions/checkout@v4 diff --git a/.github/workflows/go-test-linux.yaml b/.github/workflows/go-test-linux.yaml index f65a539..84e7fde 100644 --- a/.github/workflows/go-test-linux.yaml +++ b/.github/workflows/go-test-linux.yaml @@ -7,11 +7,12 @@ on: [push] jobs: go-test-linux: - runs-on: ubuntu-latest + runs-on: ${{ matrix.os }} strategy: matrix: go: ["1.21"] - name: Go ${{ matrix.go }} - linux + os: [ubuntu-latest] + name: "go ... with OS: ${{ matrix.os }}; Go: ${{ matrix.go }}" steps: - name: Checkout repository uses: actions/checkout@v4 diff --git a/.github/workflows/go-test-windows.yaml b/.github/workflows/go-test-windows.yaml index 1c82ce4..32edf91 100644 --- a/.github/workflows/go-test-windows.yaml +++ b/.github/workflows/go-test-windows.yaml @@ -7,11 +7,12 @@ on: [push] jobs: go-test-windows: - runs-on: windows-latest + runs-on: ${{ matrix.os }} strategy: matrix: go: ["1.21"] - name: Go ${{ matrix.go }} - windows + os: [windows-latest] + name: "go ... with OS: ${{ matrix.os }}; Go: ${{ matrix.go }}" steps: - name: Checkout repository uses: actions/checkout@v4