Skip to content

Commit

Permalink
First draft of GitHub Action (#309)
Browse files Browse the repository at this point in the history
This does not run the integration tests.

#309
  • Loading branch information
engn33r authored Jun 7, 2021
1 parent ecd32d0 commit 577c906
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: ZGrab2 build action
on: [push, pull_request]
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.16

- name: Check out source
uses: actions/checkout@v2

- name: Build
run: |
go get -t ./...
make

0 comments on commit 577c906

Please sign in to comment.