Bump Gradle action form v3 to v4 #27
Workflow file for this run
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: CI | |
on: | |
pull_request: | |
merge_group: | |
jobs: | |
check: | |
name: Use this action for check | |
strategy: | |
matrix: | |
runner: [ubuntu-latest, macos-latest, windows-latest] | |
fail-fast: false | |
permissions: | |
contents: read # for checkout | |
runs-on: ${{ matrix.runner }} | |
steps: | |
- name: Check out | |
uses: actions/checkout@v4 | |
- name: Dump GitHub context | |
env: | |
GITHUB_CONTEXT: ${{ toJson(github) }} | |
run: echo "$GITHUB_CONTEXT" | |
- name: Use this action | |
uses: ./ | |
with: | |
cache-read-only: false | |
- name: Check out samlpe project | |
uses: actions/checkout@v4 | |
with: | |
repository: yumemi-inc/Tart | |
path: sample | |
- name: Build samlpe project for check | |
run: cd sample && ./gradlew assembleDebug |