diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 3a78911..0d8be3b 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -42,6 +42,26 @@ jobs: - name: Compile and run cljest tests run: make jest-ci + cljest-analyze: + runs-on: ubuntu-latest + defaults: + run: + working-directory: cljest + + steps: + - uses: actions/checkout@v3 + - name: Setup java + uses: actions/setup-java@v3 + with: + distribution: 'corretto' + java-version: '17' + - name: Setup Clojure + uses: DeLaGuardo/setup-clojure@9.5 + with: + cli: 1.11.1.1224 + - name: Analyze with cljdoc-analyzer + run: make analyze + jest-preset-cljest-tests: runs-on: ubuntu-latest defaults: