Skip to content

Commit

Permalink
ci: add a compile check for open PRs (#1858)
Browse files Browse the repository at this point in the history
  • Loading branch information
mr-karan authored May 7, 2024
1 parent c108486 commit 6886878
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/build-sanity.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Build Sanity Check

on:
pull_request:
types:
- opened

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout Code
uses: actions/checkout@v4

- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: "1.22"

- name: Prepare Dependencies and Build
run: make dist

0 comments on commit 6886878

Please sign in to comment.