mirror of
https://github.com/metosin/reitit.git
synced 2025-12-21 10:01:11 +00:00
Fix interceptors deps
This commit is contained in:
parent
cf5906030a
commit
a032abc910
3 changed files with 7 additions and 3 deletions
2
.github/workflows/testsuite.yml
vendored
2
.github/workflows/testsuite.yml
vendored
|
|
@ -87,8 +87,6 @@ jobs:
|
|||
with:
|
||||
lein: 2.9.5
|
||||
cli: 1.11.0.1100
|
||||
- name: Build jars so that CljDoc analyze can use it
|
||||
run: ./scripts/lein-modules install
|
||||
- name: Install cljdoc analyzer
|
||||
run: clojure -Ttools install io.github.cljdoc/cljdoc-analyzer '{:git/tag "RELEASE"}' :as cljdoc-analyzer
|
||||
- name: CljDoc Check
|
||||
|
|
|
|||
|
|
@ -11,4 +11,5 @@
|
|||
:inherit [:deploy-repositories :managed-dependencies]}
|
||||
:dependencies [[metosin/reitit-ring]
|
||||
[lambdaisland/deep-diff]
|
||||
[metosin/muuntaja]])
|
||||
[metosin/muuntaja]
|
||||
[metosin/spec-tools]])
|
||||
|
|
|
|||
|
|
@ -2,6 +2,11 @@
|
|||
|
||||
set -e
|
||||
|
||||
# Need pom and jar for analyze local.
|
||||
# Need repo version installed to the local m2 for up-to-date dependencies between modules.
|
||||
# Install will run jar and pom tasks already.
|
||||
./scripts/lein-modules install
|
||||
|
||||
for i in modules/*; do
|
||||
cd $i
|
||||
clojure -J-Dclojure.main.report=stderr -Tcljdoc-analyzer analyze-local
|
||||
|
|
|
|||
Loading…
Reference in a new issue