Skip to content

Commit

Permalink
Merge pull request #36 from projectdiscovery/build-test
Browse files Browse the repository at this point in the history
added build test
  • Loading branch information
ehsandeep committed May 1, 2023
2 parents e1b5144 + 5a69cb6 commit 57672d5
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/build-test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: 🔨 Build Test

on:
pull_request:
workflow_dispatch:

jobs:
build:
name: Test Builds
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macOS-13]
steps:
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: 1.19

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

- name: Test
run: go test ./...

0 comments on commit 57672d5

Please sign in to comment.