From c7a85084d6db2d755b03f7cee9e9e5c8d476c08c Mon Sep 17 00:00:00 2001 From: Sammers21 Date: Fri, 20 Mar 2020 15:42:50 +0300 Subject: [PATCH] remove maven action --- .github/workflows/maven.yml | 23 ----------------------- 1 file changed, 23 deletions(-) delete mode 100644 .github/workflows/maven.yml diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml deleted file mode 100644 index 98df4d9..0000000 --- a/.github/workflows/maven.yml +++ /dev/null @@ -1,23 +0,0 @@ ---- -name: Maven Build -"on": [push, pull_request] -jobs: - build: - runs-on: ${{ matrix.os }} - strategy: - matrix: - os: [windows-latest, ubuntu-latest] - steps: - - uses: actions/checkout@v2 - - name: Set up JDK 11 - uses: actions/setup-java@v1 - with: - java-version: 11 - - uses: actions/cache@v1 - with: - path: ~/.m2/repository - key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }} - restore-keys: | - ${{ runner.os }}-maven- - - name: Build it with Maven - run: mvn -B verify -Pqulice