Skip to content

Commit

Permalink
build: run test workflow on all supported platforms
Browse files Browse the repository at this point in the history
  • Loading branch information
anfragment committed Feb 28, 2024
1 parent 4ea0085 commit f171e7d
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,18 @@ on:

jobs:
test:
name: Test
runs-on: ubuntu-latest
name: Test (${{ matrix.os }})
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
fail-fast: false
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: ./go.mod
check-latest: true
- name: Run go version
run: go version
- name: Create placeholder asset
Expand Down

0 comments on commit f171e7d

Please sign in to comment.