Skip to content

Commit

Permalink
testing GOOS and GOARCH
Browse files Browse the repository at this point in the history
  • Loading branch information
amitz committed Mar 24, 2024
1 parent 6385da6 commit c03da75
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions .github/workflows/lava.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Lava
name: Lava Build

on:
push:
Expand All @@ -13,8 +13,13 @@ jobs:
strategy:
matrix:
binary: [lavad, lavap, lavavisor]
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
targetos: [darwin, linux]
arch: [amd64, arm64]
runs-on: ubuntu-latest
env:
GOOS: ${{ matrix.targetos }}
GOARCH: ${{ matrix.arch }}

steps:
- name: Checkout code
uses: actions/checkout@v4
Expand Down

0 comments on commit c03da75

Please sign in to comment.