This is an automated email from the ASF dual-hosted git repository.
dongjoon pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/spark-kubernetes-operator.git
The following commit(s) were added to refs/heads/main by this push:
new 9ec59ac Add GitHub Action job
9ec59ac is described below
commit 9ec59ac797bacc62128a5e3ab680069a9790dfb4
Author: Dongjoon Hyun <[email protected]>
AuthorDate: Fri Mar 29 14:59:11 2024 -0700
Add GitHub Action job
---
.github/workflows/build_and_test.yml | 29 +++++++++++++++++++++++++++++
1 file changed, 29 insertions(+)
diff --git a/.github/workflows/build_and_test.yml
b/.github/workflows/build_and_test.yml
new file mode 100644
index 0000000..6a5a147
--- /dev/null
+++ b/.github/workflows/build_and_test.yml
@@ -0,0 +1,29 @@
+name: Build and test
+
+on:
+ push:
+ branches:
+ - main
+ pull_request:
+ branches:
+ - main
+
+# Cancel previous PR build and test
+concurrency:
+ group: ${{ github.workflow }}-${{ github.event_name == 'pull_request' &&
github.event.number || github.sha }}
+ cancel-in-progress: true
+
+jobs:
+ license-check:
+ name: "License Check"
+ runs-on: ubuntu-latest
+ steps:
+ - name: Checkout repository
+ uses: actions/checkout@v3
+ - name: Check license header
+ uses: apache/skywalking-eyes@main
+ env:
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
+ with:
+ config: .github/.licenserc.yaml
+
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]