From aa71a2e3b61a991fed10d43ea43c788a94cb00e0 Mon Sep 17 00:00:00 2001 From: Marin Nozhchev Date: Sat, 20 Feb 2021 16:32:53 +0200 Subject: [PATCH] Remove Github Action for now while using TravisCI --- .github/workflows/build.yml | 24 ------------------------ 1 file changed, 24 deletions(-) delete mode 100644 .github/workflows/build.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml deleted file mode 100644 index fdc4515..0000000 --- a/.github/workflows/build.yml +++ /dev/null @@ -1,24 +0,0 @@ -# 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: Java CI with Maven - -on: - push: - branches: [ main ] - pull_request: - branches: [ main ] - -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 -B package --file pom.xml