You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mahout.apache.org by ra...@apache.org on 2020/08/07 13:08:06 UTC

[mahout] branch trunk updated: [JENKINS-MIGRATION] Migrating Quality Build

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

rawkintrevo pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/mahout.git


The following commit(s) were added to refs/heads/trunk by this push:
     new 1e4e43d  [JENKINS-MIGRATION] Migrating Quality Build
1e4e43d is described below

commit 1e4e43dab4f09b1da22603a89b57036a3c3b2a6e
Author: Trevor Grant <tr...@gmail.com>
AuthorDate: Fri Aug 7 08:08:00 2020 -0500

    [JENKINS-MIGRATION] Migrating Quality Build
---
 .github/workflows/quality.yml | 26 ++++++++++++++++++++++++++
 1 file changed, 26 insertions(+)

diff --git a/.github/workflows/quality.yml b/.github/workflows/quality.yml
new file mode 100644
index 0000000..bc02601
--- /dev/null
+++ b/.github/workflows/quality.yml
@@ -0,0 +1,26 @@
+# This workflow will build a Java project with Maven
+# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
+
+name: Quality Assurance
+
+on:
+  push:
+    branches: [ trunk ]
+  pull_request:
+    branches: [ trunk ]
+  schedule:
+    - cron: '0 0 * * *'
+
+jobs:
+  build:
+
+    runs-on: ubuntu-latest
+
+    steps:
+    - uses: actions/checkout@v2
+    - name: Set up JDK 1.8
+      uses: actions/setup-java@v1
+      with:
+        java-version: 1.8
+    - name: Build with Maven
+      run: mvn -U clean install findbugs:findbugs pmd:pmd -Dmaven.javadoc.skip=true