This is an automated email from the ASF dual-hosted git repository. sebb pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-net.git
The following commit(s) were added to refs/heads/master by this push: new 56da652e Add adhoc test action 56da652e is described below commit 56da652e9affd6aa2edc77ddff7f6d9f81688e54 Author: Sebb <s...@apache.org> AuthorDate: Mon Aug 22 23:39:24 2022 +0100 Add adhoc test action CI skip --- .github/workflows/maven_adhoc.yml | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) diff --git a/.github/workflows/maven_adhoc.yml b/.github/workflows/maven_adhoc.yml new file mode 100644 index 00000000..8bb9bc6a --- /dev/null +++ b/.github/workflows/maven_adhoc.yml @@ -0,0 +1,32 @@ +# 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 adhoc testing + +on: workflow_dispatch + +jobs: + build: + timeout-minutes: 7 + runs-on: windows-latest + steps: + - uses: actions/checkout@v3 + - name: Set up JDK + uses: actions/setup-java@v3 + with: + distribution: 'temurin' + java-version: 8 + - name: Build with Maven + run: mvn -V --batch-mode --file pom.xml --no-transfer-progress -dtest=MainTest