Fix auto-fit preserving sparse lower rows #71
This file contains hidden or 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: | |
| push: | |
| pull_request: | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| concurrency: | |
| group: ci-${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| idea: | |
| name: Tests / IDEA plugin | |
| runs-on: windows-latest | |
| timeout-minutes: 60 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 | |
| with: | |
| persist-credentials: false | |
| - name: Set up JDK 17 | |
| uses: actions/setup-java@ad2b38190b15e4d6bdf0c97fb4fca8412226d287 # v5.3.0 | |
| with: | |
| distribution: temurin | |
| java-version: '17' | |
| - name: Validate Gradle Wrapper | |
| uses: gradle/actions/wrapper-validation@3f131e8634966bd73d06cc69884922b02e6faf92 # v6.2.0 | |
| - name: Set up Gradle | |
| uses: gradle/actions/setup-gradle@3f131e8634966bd73d06cc69884922b02e6faf92 # v6.2.0 | |
| - name: Clean check and build plugin | |
| shell: cmd | |
| run: gradlew.bat clean check buildPlugin --no-daemon --console=plain --no-build-cache --rerun-tasks | |
| - name: Core performance benchmarks | |
| shell: cmd | |
| run: gradlew.bat corePerformance --no-daemon --console=plain --no-build-cache --rerun-tasks | |
| - name: Upload coverage to Codecov | |
| uses: codecov/codecov-action@fb8b3582c8e4def4969c97caa2f19720cb33a72f # v7 | |
| with: | |
| files: build/reports/coverage/jacoco.xml | |
| flags: idea-core | |
| name: idea-markdown-table-editor | |
| fail_ci_if_error: false | |
| - name: Upload plugin package | |
| uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 | |
| with: | |
| name: idea-plugin-ci | |
| path: build/distributions/*.zip | |
| if-no-files-found: error | |
| retention-days: 7 | |
| - name: Verify plugin against baseline IDEA | |
| shell: cmd | |
| run: gradlew.bat verifyPlugin -PverifyRecommendedIdes=false -PverifyAllJetBrainsIdes=false --no-daemon --console=plain --no-build-cache | |
| - name: Upload Gradle reports on failure | |
| if: failure() | |
| uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 | |
| with: | |
| name: idea-gradle-reports | |
| path: build/reports/** | |
| if-no-files-found: ignore | |
| retention-days: 7 |