You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@qpid.apache.org by ro...@apache.org on 2020/08/07 10:54:03 UTC

[qpid-dispatch] branch master updated: add temp workflow, ignore

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

robbie pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/qpid-dispatch.git


The following commit(s) were added to refs/heads/master by this push:
     new 75ae9d0  add temp workflow, ignore
75ae9d0 is described below

commit 75ae9d033534068f5e4f750d645fe7593e31ed79
Author: Robbie Gemmell <ro...@apache.org>
AuthorDate: Fri Aug 7 11:53:34 2020 +0100

    add temp workflow, ignore
---
 .github/workflows/apache-rat:check.yml | 47 ++++++++++++++++++++++++++++++++++
 1 file changed, 47 insertions(+)

diff --git a/.github/workflows/apache-rat:check.yml b/.github/workflows/apache-rat:check.yml
new file mode 100644
index 0000000..4234b53
--- /dev/null
+++ b/.github/workflows/apache-rat:check.yml
@@ -0,0 +1,47 @@
+#
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements.  See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership.  The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License.  You may obtain a copy of the License at
+#
+#   http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing,
+# software distributed under the License is distributed on an
+# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+# KIND, either express or implied.  See the License for the
+# specific language governing permissions and limitations
+# under the License.
+#
+
+name: Java CI
+
+on: [push, pull_request]
+
+jobs:
+  'apache-rat_check':
+    name: RAT Check
+    runs-on: ubuntu-latest
+    steps:
+      - uses: actions/checkout@v2
+      - uses: actions/cache@v2
+        with:
+          path: ~/.m2/repository
+          key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
+          restore-keys: |
+            ${{ runner.os }}-maven-
+
+      - name: Install JDK ${{ matrix.java }}
+        uses: actions/setup-java@v1
+        with:
+          java-version: 11
+
+      - name: RAT Check
+        run: mvn apache-rat:check
+
+      - name: Output
+        if: ${{ ! cancelled() }}
+        run: cat target/rat.txt || echo "Unable to print output"


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@qpid.apache.org
For additional commands, e-mail: commits-help@qpid.apache.org