Skip to content

Commit

Permalink
ci: run tests on linux, macos and windows
Browse files Browse the repository at this point in the history
  • Loading branch information
vpukhanov committed Jun 28, 2024
1 parent bc43924 commit 9c99806
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/go-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,16 @@ on:
jobs:
test:
name: Run Tests
runs-on: ubuntu-latest
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
go-version: [1.22]
steps:
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.22
go-version: ${{ matrix.go-version }}

- name: Check out code
uses: actions/checkout@v2
Expand Down

0 comments on commit 9c99806

Please sign in to comment.