Skip to content

Commit

Permalink
Enable GitHub Actions with a build workflow (#354)
Browse files Browse the repository at this point in the history
  • Loading branch information
Fawad Khaliq authored Oct 5, 2020
1 parent b4601ea commit 761ef94
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Build

on:
pull_request_target:
branches: [ master ]

jobs:

build_x86_64:
name: Build
runs-on: ubuntu-latest
steps:

- name: Set up Go 1.14
uses: actions/setup-go@v2
with:
go-version: ^1.14
id: go

- name: Check out code into the Go module directory
uses: actions/checkout@v2

- name: Build
run: make controller

- name: Run
run: ./bin/controller -h || true

0 comments on commit 761ef94

Please sign in to comment.