From 3ca854e507fff06bbd373d5cea209c9c8b78b15e Mon Sep 17 00:00:00 2001 From: Len <40720638+destro174@users.noreply.github.com> Date: Sun, 25 Sep 2022 21:42:37 +0200 Subject: [PATCH] Remove GitHub workflows --- .github/workflows/build.yml | 18 ------------------ 1 file changed, 18 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 1d7d406..0000000 --- a/.github/workflows/build.yml +++ /dev/null @@ -1,18 +0,0 @@ -name: Build -on: [ push, pull_request ] - -jobs: - build: - runs-on: ubuntu-latest - if: "!contains(github.event.commits[0].message, '[ci-skip]')" - steps: - - uses: actions/checkout@v2 - - uses: gradle/wrapper-validation-action@v1 - - uses: actions/setup-java@v2 - with: - distribution: temurin - java-version: 17 - - name: Configure Git - run: git config --global user.email "no-reply@github.com" && git config --global user.name "Github Actions" - - name: Build - run: ./gradlew build --stacktrace