Skip to content

Commit

Permalink
chore: added test and pr merge check workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
hitesh22rana committed Dec 26, 2024
1 parent d45d175 commit 8361085
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 0 deletions.
File renamed without changes.
30 changes: 30 additions & 0 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Test and PR Merge Check

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

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v4

- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 1.23

- name: Run tests
run: go test -v ./...

- name: Check if PR can be merged
if: github.event_name == 'pull_request'
run: |
if [ $? -ne 0 ]; then
echo "Tests failed, PR cannot be merged!"
exit 1
fi

0 comments on commit 8361085

Please sign in to comment.