Skip to content

Commit

Permalink
ci(test): run test on macos and windows
Browse files Browse the repository at this point in the history
  • Loading branch information
lasiar committed May 3, 2024
1 parent 3ea58f4 commit b1b9464
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,18 @@ on:

jobs:
build:
runs-on: ubuntu-latest

strategy:
matrix:
go-version: ['stable', 'oldstable', tip]
go-version: ['stable', 'oldstable', 'tip']
os: ['macos-latest', 'windows-latest', 'ubuntu-latest']
exclude:
- go-version: tip
os: macos-latest

- go-version: tip
os: windows-latest

runs-on: ${{ matrix.os }}

steps:
- name: Install Go stable
Expand Down

0 comments on commit b1b9464

Please sign in to comment.