Skip to content

Commit

Permalink
add github actions build workflow (#32)
Browse files Browse the repository at this point in the history
  • Loading branch information
PrathyushaLakkireddy authored Sep 17, 2024
1 parent da99450 commit 41322d0
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Build

on:
pull_request:
push:
branches:
- main

concurrency:
group: ci-${{ github.ref }}-build
cancel-in-progress: true

jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3

- name: Install Go
uses: actions/setup-go@v3
with:
go-version: "1.22"

- name: Display Go version
run: go version

- name: Build cada
run: make build

0 comments on commit 41322d0

Please sign in to comment.