Skip to content

Commit

Permalink
adding GitHub CI workflow file
Browse files Browse the repository at this point in the history
Signed-off-by: Shlomi Noach <[email protected]>
  • Loading branch information
shlomi-noach committed Aug 15, 2023
1 parent 7cfce40 commit 06e0f1a
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Go package

on: [push, pull_request]

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

- name: Set up Go
uses: actions/setup-go@v4

- name: Build
run: make build

- name: Test
run: make test

0 comments on commit 06e0f1a

Please sign in to comment.