Skip to content

Commit

Permalink
Merge pull request #137 from projectdiscovery/run_on_win_osx
Browse files Browse the repository at this point in the history
run test on win and osx
  • Loading branch information
Mzack9999 committed Aug 16, 2023
2 parents 821b811 + fbfc334 commit f52893d
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/build-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,17 @@ on:
jobs:
build:
name: Test Builds
runs-on: ubuntu-latest
strategy:
matrix:
go-version: [1.20.x]
os: [ubuntu-latest, windows-latest, macOS-latest]

runs-on: ${{ matrix.os }}
steps:
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.20.x
go-version: ${{ matrix.go-version }}

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

0 comments on commit f52893d

Please sign in to comment.