Skip to content

Commit

Permalink
add multiple ci run platform
Browse files Browse the repository at this point in the history
  • Loading branch information
amitbasuri committed May 23, 2024
1 parent d8da448 commit fa7b7e6
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,13 @@ permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
arch: [amd64, arm64]
go-version: [1.21.3]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout repository
uses: actions/checkout@v2
Expand Down

0 comments on commit fa7b7e6

Please sign in to comment.