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 9bd2038 [NO-JIRA] Remove Quality Build from git-actions
9bd2038 is described below
commit 9bd2038fdd7d72d084c977330b6cafa6915bccee
Author: Trevor Grant <[email protected]>
AuthorDate: Tue Feb 2 13:30:40 2021 -0600
[NO-JIRA] Remove Quality Build from git-actions
---
.github/workflows/quality.yml | 39 ---------------------------------------
1 file changed, 39 deletions(-)
diff --git a/.github/workflows/quality.yml b/.github/workflows/quality.yml
deleted file mode 100644
index 44c2f08..0000000
--- a/.github/workflows/quality.yml
+++ /dev/null
@@ -1,39 +0,0 @@
-# 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: Quality Assurance
-
-on:
-# push:
-# branches: [ trunk ]
-# pull_request:
-# branches: [ trunk ]
- schedule:
- - cron: '0 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