Fix Kotlin test calling removed openWithIdleTimeout #515
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: Lint | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| concurrency: | |
| group: lint-${{ github.ref }} | |
| cancel-in-progress: true | |
| env: | |
| CLJ_KONDO_VERSION: "2024.11.14" | |
| jobs: | |
| lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install clj-kondo | |
| run: | | |
| curl -sLO "https://github.com/clj-kondo/clj-kondo/releases/download/v${CLJ_KONDO_VERSION}/clj-kondo-${CLJ_KONDO_VERSION}-linux-amd64.zip" | |
| unzip -o "clj-kondo-${CLJ_KONDO_VERSION}-linux-amd64.zip" -d /usr/local/bin | |
| rm "clj-kondo-${CLJ_KONDO_VERSION}-linux-amd64.zip" | |
| clj-kondo --version | |
| - name: Run clj-kondo | |
| run: clj-kondo --lint src test |