Migrate to composite plugin #1
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: Check plugins | |
on: | |
pull_request: | |
paths: | |
- 'plugins/**' | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
build-src-check: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/[email protected] | |
- name: Set up JDK 17 | |
uses: actions/[email protected] | |
with: | |
java-version: 17 | |
distribution: temurin | |
cache: gradle | |
- name: plugins tests | |
env: | |
FIREBASE_CI: 1 | |
run: | | |
./gradlew plugins:check | |
- name: Publish Test Results | |
uses: EnricoMi/publish-unit-test-result-action@82082dac68ad6a19d980f8ce817e108b9f496c2a | |
with: | |
files: "**/build/test-results/**/*.xml" | |
check_name: "plugins test results" |