From 499e6fb51178234583c94888f1e9199783cf4cd7 Mon Sep 17 00:00:00 2001 From: Kiran Hart Date: Fri, 19 May 2023 10:30:18 -0400 Subject: [PATCH] =?UTF-8?q?=E2=9D=8C=20remove=20workflow=20again?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Took 38 seconds --- .github/workflows/build.yml | 26 -------------------------- 1 file changed, 26 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 a631121..0000000 --- a/.github/workflows/build.yml +++ /dev/null @@ -1,26 +0,0 @@ -name: Auction House Build - -on: [ push, pull_request ] - -jobs: - build: - runs-on: ubuntu-latest - steps: - - name: Checkout the repository - uses: actions/checkout@v2 - - - name: Set up JDK 16 - uses: actions/setup-java@v2 - with: - distribution: 'temurin' - java-version: '8' - - - name: Cache Maven Packages - uses: actions/cache@v2 - with: - path: ~/.m2 - key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }} - restore-keys: ${{ runner.os }}-m2 - - - name: Build with Maven - run: mvn verify -B --file pom.xml \ No newline at end of file