Skip to content

Commit

Permalink
Add github actions - build and test project workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Tzvonimir committed Mar 28, 2024
1 parent 9c5ea9a commit 7ee4bde
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/go.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Go

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

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

- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.21.4'

- name: Build
run: make build

- name: Test
run: make test

0 comments on commit 7ee4bde

Please sign in to comment.