Skip to content

Commit

Permalink
attempt to run on windows github actions runner
Browse files Browse the repository at this point in the history
Signed-off-by: Joe Fitzgerald <[email protected]>
  • Loading branch information
joefitzgerald committed Nov 17, 2023
1 parent d5ccbdd commit 2bdcf66
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,12 @@ name: Build and Test
on: [push, pull_request]
jobs:
build:
name: Build
runs-on: ubuntu-latest
name: Build and Test
runs-on: ${{ matrix.os }}
strategy:
matrix:
go: ['stable', 'oldstable']
go: [stable, oldstable]
os: [ubuntu-latest, windows-latest]
steps:
- uses: actions/checkout@v4

Expand All @@ -17,3 +18,7 @@ jobs:

- name: Build and Test
run: ./scripts/ci.sh
if: ${{ matrix.os == 'ubuntu-latest' }}
- name: Build and Test
run: .\scripts\ci.ps1
if: ${{ matrix.os == 'windows-latest' }}

0 comments on commit 2bdcf66

Please sign in to comment.