This is an automated email from the ASF dual-hosted git repository.

epugh pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/solr-mcp.git


The following commit(s) were added to refs/heads/main by this push:
     new 81fef75  Trying to enable tests via GHA in our repo
81fef75 is described below

commit 81fef75f2f99d30e8cfff906589b32c678b03f95
Author: Eric Pugh <[email protected]>
AuthorDate: Fri May 1 17:08:41 2026 -0400

    Trying to enable tests via GHA in our repo
---
 .github/workflows/test.yml | 26 ++++++++++++++++++++++++++
 1 file changed, 26 insertions(+)

diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
new file mode 100644
index 0000000..b8e7ccc
--- /dev/null
+++ b/.github/workflows/test.yml
@@ -0,0 +1,26 @@
+name: Run tests
+
+on:
+  pull_request:
+    branches:
+      - '*'
+
+concurrency:
+  group: ${{ github.workflow }}-${{ github.event.pull_request.number || 
github.ref }}
+  cancel-in-progress: true
+
+jobs:
+  test:
+    name: gradle test
+
+    runs-on: ubuntu-latest
+    timeout-minutes: 15
+
+    steps:
+    - name: Checkout code
+      uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1
+
+    - uses: ./.github/actions/prepare-for-build
+
+    - name: Run gradle test
+      run: ./gradlew test

Reply via email to