From 45e14bb756500e22a039e96b05080178051cfca0 Mon Sep 17 00:00:00 2001 From: TheRealNull Date: Thu, 14 Jan 2021 14:58:08 -0500 Subject: [PATCH] ci: remove upstreams template (sneaky) --- .github/workflows/CI.yml | 29 ----------------------------- 1 file changed, 29 deletions(-) delete mode 100644 .github/workflows/CI.yml diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml deleted file mode 100644 index a117224e5f..0000000000 --- a/.github/workflows/CI.yml +++ /dev/null @@ -1,29 +0,0 @@ -name: CI - -on: [ push, pull_request ] - -jobs: - build: - runs-on: ubuntu-20.04 - - steps: - - name: Checkout - uses: actions/checkout@v2 - - - name: Cache - uses: actions/cache@v2 - with: - path: | - ~/.m2/repository - ~/.cache/runelite - key: ${{ runner.os }}-cache-${{ hashFiles('**/pom.xml', '**/build.sh') }} - restore-keys: | - ${{ runner.os }}-cache- - - - name: Set up JDK 11 - uses: actions/setup-java@v1 - with: - java-version: 11 - - - name: Build - run: ./ci/build.sh