Latest EAP Compatibility #1236
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: Latest EAP Compatibility | |
on: | |
schedule: | |
- cron: '3 0 * * *' | |
jobs: | |
compatibility: | |
name: Ensure plugin compatibility against the latest EAP snapshot for both IDEA Community and IDEA Ultimate | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v3 | |
- name: Setup Java | |
uses: actions/setup-java@v3 | |
with: | |
distribution: zulu | |
java-version: 11 | |
cache: 'gradle' | |
- name: Build with Gradle | |
run: ./gradlew build | |
- name: Verify IDEA compatibility | |
id: verify | |
uses: ChrisCarini/[email protected] | |
with: | |
ide-versions: | | |
ideaIC:LATEST-EAP-SNAPSHOT | |
ideaIU:LATEST-EAP-SNAPSHOT | |
- name: Get log file path and print contents | |
run: | | |
echo "The log file path is: ${{steps.verify.outputs.verification-output-log-filename}}"; | |
cat ${{steps.verify.outputs.verification-output-log-filename}} | |
- name: Notify to Telegram | |
uses: yanzay/[email protected] | |
if: always() | |
with: | |
chat: ${{ secrets.TELEGRAM_TO }} | |
token: ${{ secrets.TELEGRAM_TOKEN }} | |
status: ${{ job.status }} |