-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: added test and pr merge check workflow
- Loading branch information
1 parent
d45d175
commit 8361085
Showing
2 changed files
with
30 additions
and
0 deletions.
There are no files selected for viewing
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |