Skip to content

Commit

Permalink
Add building GH action (#12)
Browse files Browse the repository at this point in the history
Signed-off-by: Atanas Dinov <[email protected]>
  • Loading branch information
atanasdinov committed Jul 19, 2024
1 parent 6eac0df commit 0bdee75
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/build_and_test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
on: [ push, pull_request ]
name: Build & Test

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.22'
- name: Build
run: go build -v ./...
# TODO: Fix tests and enable step
# - name: Test
# run: go test -v ./... -tags integration

0 comments on commit 0bdee75

Please sign in to comment.