From 6f2a169adb8fc988b98c177cb34350a4531bb8d4 Mon Sep 17 00:00:00 2001 From: Sam Duckett <67984574+samduckett@users.noreply.github.com> Date: Thu, 14 Mar 2024 13:01:37 -0600 Subject: [PATCH] Delete .github/workflows/formatting.yml --- .github/workflows/formatting.yml | 25 ------------------------- 1 file changed, 25 deletions(-) delete mode 100644 .github/workflows/formatting.yml diff --git a/.github/workflows/formatting.yml b/.github/workflows/formatting.yml deleted file mode 100644 index 58e7fef..0000000 --- a/.github/workflows/formatting.yml +++ /dev/null @@ -1,25 +0,0 @@ - -name: Check Formatting - - -on: - push: - workflow_dispatch: -# A workflow run is made up of one or more jobs that can run sequentially or in parallel -jobs: - spotless: - # The type of runner that the job will run on - runs-on: ubuntu-latest - # Steps represent a sequence of tasks that will be executed as part of the job - steps: - # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - - uses: actions/checkout@v2 - with: - fetch-depth: 0 - - uses: actions/setup-java@v3 - with: - distribution: 'zulu' - java-version: 17 - - name: Change wrapper permissions - run: chmod +x ./gradlew - - run: ./gradlew spotlessCheck