Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

run: ./gradlew test #1698

Closed
wants to merge 1 commit into from
Closed

run: ./gradlew test #1698

wants to merge 1 commit into from

Conversation

notebook-t
Copy link

runs-on: ubuntu-latest

steps:
- name: Checkout code uses: actions/checkout@v2

- name: Set up JDK 11 uses: actions/setup-java@v2 with: distribution: 'adopt' java-version: '11'

- name: Cache Gradle packages uses: actions/cache@v2 with: path: | ~/.gradle/caches ~/.gradle/wrapper key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }} restore-keys: ${{ runner.os }}-gradle

- name: Build with Gradle
  run: ./gradlew build

- name: Run unit tests
  run: ./gradlew test

name: Android CI

on:
  push:
    branches:
      - main
  pull_request:
    branches:
      - main

jobs:
  build:

    runs-on: ubuntu-latest

    steps:
    - name: Checkout code
      uses: actions/checkout@v2

    - name: Set up JDK 11
      uses: actions/setup-java@v2
      with:
        distribution: 'adopt'
        java-version: '11'

    - name: Cache Gradle packages
      uses: actions/cache@v2
      with:
        path: |
          ~/.gradle/caches
          ~/.gradle/wrapper
        key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }}
        restore-keys: ${{ runner.os }}-gradle

    - name: Build with Gradle
      run: ./gradlew build

    - name: Run unit tests
      run: ./gradlew test
@notebook-t notebook-t requested a review from a team as a code owner October 7, 2024 18:39
@github-actions github-actions bot added the Community Contribution Community members are working on the issue label Oct 7, 2024
Copy link

github-actions bot commented Oct 7, 2024

Thank you for your contribution @notebook-t! We will review the pull request and get back to you soon.

@github-actions github-actions bot added the customer-reported Issues that are reported by GitHub users external to the Azure organization. label Oct 7, 2024
@notebook-t notebook-t mentioned this pull request Oct 7, 2024
2 tasks
@weshaggard
Copy link
Member

Please provide more context if you have a real scenario.

@weshaggard weshaggard closed this Oct 7, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Community Contribution Community members are working on the issue customer-reported Issues that are reported by GitHub users external to the Azure organization.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants