Skip to content

Commit

Permalink
Merge pull request #5 from Mikescops/ci-github-actions
Browse files Browse the repository at this point in the history
Go CI
  • Loading branch information
Mikescops committed Jan 2, 2021
2 parents ef9819c + 19ae146 commit b1a62b8
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/go.yml
@@ -0,0 +1,26 @@
name: Go

on:
push:
branches: [ main ]
pull_request:
branches: [ main ]

jobs:

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

- name: Set up Go 1.x
uses: actions/setup-go@v2
with:
go-version: ^1.13

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

- name: Build
run: make install

0 comments on commit b1a62b8

Please sign in to comment.