Skip to content

Commit

Permalink
Add a github action for testing
Browse files Browse the repository at this point in the history
  • Loading branch information
bparees committed Aug 14, 2023
1 parent aa5349a commit feeeac1
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/github-actions.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: Build Test
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.20'
- name: Build
run: make build

0 comments on commit feeeac1

Please sign in to comment.