Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CI: Add GH actions workflow #1371

Merged
merged 2 commits into from
Dec 17, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
37 changes: 37 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
name: CI

on:
push:
branches: [ "develop", "release-candidate", "main" ]
pull_request:
branches: [ "develop", "release-candidate", "main" ]

jobs:
unit-test:
name: Unit Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: "go.mod"
- name: Run ginkgo tests
run: go run github.com/onsi/ginkgo/v2/ginkgo -r --procs=3 --compilers=3 --randomize-all --randomize-suites --fail-on-pending --keep-going --race --trace helpers

check-pr-target-branch:
if: github.event_name == 'pull_request'
name: Check PR target branch
runs-on: ubuntu-latest
steps:
- name: Fail if target branch is main
run: |
if [ "${{ github.event.pull_request.base.ref }}" == "main" ]; then
echo "Pull requests should not target 'main' branch."
exit 1
fi
- name: Fail if target branch is release-candidate
run: |
if [ "${{ github.event.pull_request.base.ref }}" == "release-candidate" ]; then
echo "Pull requests should not target 'release-candidate' branch."
exit 1
fi
Loading