Fit gif better inside viewing area #41
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: delivery-pipeline | |
on: | |
pull_request: | |
types: | |
- opened | |
branches: ["main"] | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- run: echo "The job was automatically triggered by a ${{ github.event_name }} event." | |
- run: echo "This job is running on a ${{ runner.os }} server hosted by GitHub!" | |
- uses: actions/checkout@v3 | |
- run: echo "The ${{ github.repository }} repository has been cloned." | |
- run: echo "Setting up JDK" | |
- name: set up JDK 17 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '17' | |
distribution: 'temurin' | |
cache: gradle | |
- run: echo "The workflow is now ready to test your code." | |
- name: Grant execute permission for gradlew | |
run: chmod +x gradlew | |
- run: echo "Run tests" | |
- name: Run gradle tests | |
run: ./gradlew test | |
# - run: echo "Building Debug APK." | |
# - name: Build with Gradle | |
# run: ./gradlew build |