diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index c36267a..e6fd037 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -37,50 +37,50 @@ jobs: - name: Gradle Wrapper Validation uses: gradle/wrapper-validation-action@v1.0.3 - # Run verifyPlugin and test Gradle tasks - test: - name: Test - needs: gradleValidation - runs-on: ubuntu-latest - steps: - - # Setup Java 1.8 environment for the next steps - - name: Setup Java - uses: actions/setup-java@v1 - with: - java-version: 1.8 - - # Check out current repository - - name: Fetch Sources - uses: actions/checkout@v2 - - # Cache Gradle dependencies - - name: Setup Gradle Dependencies Cache - uses: actions/cache@v2 - with: - path: ~/.gradle/caches - key: ${{ runner.os }}-gradle-caches-${{ hashFiles('**/*.gradle', '**/*.gradle', 'gradle.properties') }} - - # Cache Gradle Wrapper - - name: Setup Gradle Wrapper Cache - uses: actions/cache@v2 - with: - path: ~/.gradle/wrapper - key: ${{ runner.os }}-gradle-wrapper-${{ hashFiles('**/gradle/wrapper/gradle-wrapper.properties') }} - - # Run detekt, ktlint and tests - - name: Run Linters and Test - run: ./gradlew check - - # Run verifyPlugin Gradle task - - name: Verify Plugin - run: ./gradlew verifyPlugin + # # Run verifyPlugin and test Gradle tasks + # test: + # name: Test + # needs: gradleValidation + # runs-on: ubuntu-latest + # steps: + + # # Setup Java 1.8 environment for the next steps + # - name: Setup Java + # uses: actions/setup-java@v1 + # with: + # java-version: 1.8 + + # # Check out current repository + # - name: Fetch Sources + # uses: actions/checkout@v2 + + # # Cache Gradle dependencies + # - name: Setup Gradle Dependencies Cache + # uses: actions/cache@v2 + # with: + # path: ~/.gradle/caches + # key: ${{ runner.os }}-gradle-caches-${{ hashFiles('**/*.gradle', '**/*.gradle', 'gradle.properties') }} + + # # Cache Gradle Wrapper + # - name: Setup Gradle Wrapper Cache + # uses: actions/cache@v2 + # with: + # path: ~/.gradle/wrapper + # key: ${{ runner.os }}-gradle-wrapper-${{ hashFiles('**/gradle/wrapper/gradle-wrapper.properties') }} + + # # Run detekt, ktlint and tests + # - name: Run Linters and Test + # run: ./gradlew check + + # # Run verifyPlugin Gradle task + # - name: Verify Plugin + # run: ./gradlew verifyPlugin # Build plugin with buildPlugin Gradle task and provide the artifact for the next workflow jobs # Requires test job to be passed build: name: Build - needs: test + # needs: test runs-on: ubuntu-latest steps: