(PE-36987 PE-36988) Add logging for connection limits #15
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: lein_test | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
paths: ['src/**','test/**'] | |
pull_request: | |
types: [opened, reopened, edited, synchronize] | |
paths: ['src/**','test/**'] | |
jobs: | |
run-lein-tests: | |
name: lein test - Java ${{ matrix.java }} | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
java: [ '11', '17' ] | |
steps: | |
- name: Check out repository code | |
uses: actions/checkout@v3 | |
- name: Setup java | |
uses: actions/setup-java@v3 | |
with: | |
distribution: temurin | |
java-version: ${{ matrix.java }} | |
- name: Install Clojure tools | |
uses: DeLaGuardo/setup-clojure@10.2 | |
with: | |
cli: latest # Clojure CLI based on tools.deps | |
lein: latest # Leiningen | |
boot: latest # Boot.clj | |
bb: latest # Babashka | |
clj-kondo: latest # Clj-kondo | |
cljstyle: latest # cljstyle | |
zprint: latest # zprint | |
- name: Run lein tests | |
run: lein test |