Bump black from 21.5b0 to 24.3.0 #131
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: Verify IDE compatibility | |
on: | |
push: | |
jobs: | |
compatibility: | |
name: Check compatibility against minimal supported IDEA, PyCharm and the latest IDEA EAP | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v1 | |
- name: Setup Java 14 | |
uses: actions/setup-java@v1 | |
with: | |
java-version: 14 | |
- name: Build the plugin using Gradle | |
run: ./gradlew buildPlugin | |
- name: Verify Plugin on IntelliJ Platforms | |
id: verify | |
uses: ChrisCarini/intellij-platform-plugin-verifier-action@latest | |
with: | |
ide-versions: | | |
ideaIC:2021.3 | |
ideaIU:2021.3 | |
pycharmPC:2021.3 | |
pycharmPY:2021.3 | |
ideaIC:LATEST-EAP-SNAPSHOT | |
- name: Get log file path and print contents | |
run: | | |
echo "The verifier log file [${{steps.verify.outputs.verification-output-log-filename}}] contents : " ; | |
cat ${{steps.verify.outputs.verification-output-log-filename}} |