Skip to content

Commit

Permalink
#101 update runs-on: (#102)
Browse files Browse the repository at this point in the history
  • Loading branch information
docktermj authored Oct 13, 2023
1 parent 3fe243d commit 79a297a
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 7 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/go-test-darwin.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/go-test-linux.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/go-test-windows.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 79a297a

Please sign in to comment.