From 9542b237553abb02b4256cbf397f327b06761893 Mon Sep 17 00:00:00 2001 From: KwonMinwoo <34360434+Kwonminwoo@users.noreply.github.com> Date: Fri, 15 Dec 2023 14:43:03 +0900 Subject: [PATCH] Delete .github/workflows/main.yml --- .github/workflows/main.yml | 47 -------------------------------------- 1 file changed, 47 deletions(-) delete mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml deleted file mode 100644 index b5d0e0d..0000000 --- a/.github/workflows/main.yml +++ /dev/null @@ -1,47 +0,0 @@ -name: CI - -on: - push: - branches: [ "main", "develop" ] - pull_request: - branches: [ "main", "develop" ] - -permissions: - contents: read - -jobs: - build: - name: Build and test project - runs-on: ubuntu-latest - - steps: - - name: Checkout the code - uses: actions/checkout@v3 - - name: Set up JDK 17 - uses: actions/setup-java@v3 - with: - java-version: '17' - distribution: 'oracle' - - - name: Grant execute permission for gradlew - run: chmod +x gradlew - - - name: Build with Gradle - uses: gradle/gradle-build-action@v2.6.0 - with: - arguments: build - # cache-read-only: ${{ github.ref != 'ref/heads/main' && github.ref != 'ref/heads/develop' }} - - # - name: Publish result of unit test - # uses: EnricoMi/publish-unit-test-result-action@v2 - # if: always() - # with: - # files: "**/build/test-results/test/TEST-*.xml" - # github_token: ${{ github.token }} - - # - name: Publish failure of unit test - # uses: mikepenz/action-junit-report@v3 - # if: always() - # with: - # report_paths: '**/build/test-results/test/TEST-*.xml' - # github_token: ${{ github.token }}