//////
Search
Duplicate

ci.yml

# This workflow uses actions that are not certified by GitHub. # They are provided by a third-party and are governed by # separate terms of service, privacy policy, and support # documentation. # This workflow will build a Java project with Gradle and cache/restore any dependencies to improve the workflow execution time # For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-java-with-gradle name: CI on: pull_request: branches: [ "main" ] env: PROJECT_NAME: gream BUCKET_NAME: bc1-gream-s3-01 CODE_DEPLOY_APP_NAME: gream DEPLOYMENT_GROUP_NAME: gream-developer jobs: test: runs-on: ubuntu-latest permissions: write-all steps: - uses: actions/checkout@v3 - name: Set up JDK 17 uses: actions/setup-java@v3 with: java-version: '17' distribution: 'temurin' - name: Cache Gradle packages uses: actions/cache@v3 with: path: | ~/.gradle/caches ~/.gradle/wrapper key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }} restore-keys: | ${{ runner.os }}-gradle- - name: Grant execute permission for gradlew run: chmod +x gradlew - name: Test with Gradle run: ./gradlew --info test - name: Publish unit test results uses: EnricoMi/publish-unit-test-result-action@v2 if: ${{ always() }} with: files: build/test-results/**/*.xml - name: Cleanup Gradle Cache if: ${{ always() }} run: | rm -f ~/.gradle/caches/modules-2/modules-2.lock rm -f ~/.gradle/caches/modules-2/gc.properties
Java
복사