update build/test dependencies
This commit is contained in:
parent
e562329669
commit
aa8089524b
5 changed files with 12 additions and 8 deletions
2
.github/workflows/test-and-release.yml
vendored
2
.github/workflows/test-and-release.yml
vendored
|
|
@ -19,7 +19,7 @@ jobs:
|
||||||
- name: Setup Clojure
|
- name: Setup Clojure
|
||||||
uses: DeLaGuardo/setup-clojure@master
|
uses: DeLaGuardo/setup-clojure@master
|
||||||
with:
|
with:
|
||||||
tools-deps: '1.10.3.986'
|
tools-deps: '1.10.3.1040'
|
||||||
- name: Cache All The Things
|
- name: Cache All The Things
|
||||||
uses: actions/cache@v2
|
uses: actions/cache@v2
|
||||||
with:
|
with:
|
||||||
|
|
|
||||||
4
.github/workflows/test-and-snapshot.yml
vendored
4
.github/workflows/test-and-snapshot.yml
vendored
|
|
@ -17,7 +17,7 @@ jobs:
|
||||||
- name: Setup Clojure
|
- name: Setup Clojure
|
||||||
uses: DeLaGuardo/setup-clojure@master
|
uses: DeLaGuardo/setup-clojure@master
|
||||||
with:
|
with:
|
||||||
tools-deps: '1.10.3.986'
|
tools-deps: '1.10.3.1040'
|
||||||
- name: Cache All The Things
|
- name: Cache All The Things
|
||||||
uses: actions/cache@v2
|
uses: actions/cache@v2
|
||||||
with:
|
with:
|
||||||
|
|
@ -49,7 +49,7 @@ jobs:
|
||||||
- name: Clojure CLI
|
- name: Clojure CLI
|
||||||
uses: DeLaGuardo/setup-clojure@master
|
uses: DeLaGuardo/setup-clojure@master
|
||||||
with:
|
with:
|
||||||
tools-deps: '1.10.3.986'
|
tools-deps: '1.10.3.1040'
|
||||||
- name: Cache All The Things
|
- name: Cache All The Things
|
||||||
uses: actions/cache@v2
|
uses: actions/cache@v2
|
||||||
with:
|
with:
|
||||||
|
|
|
||||||
2
.github/workflows/test.yml
vendored
2
.github/workflows/test.yml
vendored
|
|
@ -17,7 +17,7 @@ jobs:
|
||||||
- name: Clojure CLI
|
- name: Clojure CLI
|
||||||
uses: DeLaGuardo/setup-clojure@master
|
uses: DeLaGuardo/setup-clojure@master
|
||||||
with:
|
with:
|
||||||
tools-deps: '1.10.3.986'
|
tools-deps: '1.10.3.1040'
|
||||||
- name: Cache All The Things
|
- name: Cache All The Things
|
||||||
uses: actions/cache@v2
|
uses: actions/cache@v2
|
||||||
with:
|
with:
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,9 @@
|
||||||
# Changes
|
# Changes
|
||||||
|
|
||||||
|
* 2.1.next in progress
|
||||||
|
* Update test dependencies.
|
||||||
|
* Update `build-clj` to v0.6.1.
|
||||||
|
|
||||||
* 2.1.833 -- 2021-12-03
|
* 2.1.833 -- 2021-12-03
|
||||||
* Fix #372 by merging `:select-distinct-on` differently.
|
* Fix #372 by merging `:select-distinct-on` differently.
|
||||||
* Add empty column list check for `SELECT` and several other clauses, when `:checking :basic` (or `:strict`) is provided.
|
* Add empty column list check for `SELECT` and several other clauses, when `:checking :basic` (or `:strict`) is provided.
|
||||||
|
|
|
||||||
8
deps.edn
8
deps.edn
|
|
@ -4,7 +4,7 @@
|
||||||
:aliases
|
:aliases
|
||||||
{;; for help: clojure -A:deps -T:build help/doc
|
{;; for help: clojure -A:deps -T:build help/doc
|
||||||
:build {:deps {io.github.seancorfield/build-clj
|
:build {:deps {io.github.seancorfield/build-clj
|
||||||
{:git/tag "v0.6.0" :git/sha "2451bea"}}
|
{:git/tag "v0.6.2" :git/sha "97c275a"}}
|
||||||
:ns-default build}
|
:ns-default build}
|
||||||
|
|
||||||
;; versions to test against:
|
;; versions to test against:
|
||||||
|
|
@ -24,8 +24,8 @@
|
||||||
:main-opts ["-m" "cljs-test-runner.main"]}
|
:main-opts ["-m" "cljs-test-runner.main"]}
|
||||||
|
|
||||||
:gen-doc-tests {:replace-paths ["build"]
|
:gen-doc-tests {:replace-paths ["build"]
|
||||||
:extra-deps {babashka/fs {:mvn/version "0.0.5"}
|
:extra-deps {babashka/fs {:mvn/version "0.1.2"}
|
||||||
com.github.lread/test-doc-blocks {:mvn/version "1.0.146-alpha"}}
|
com.github.lread/test-doc-blocks {:mvn/version "1.0.166-alpha"}}
|
||||||
:main-opts ["-m" "honey.gen-doc-tests"]}
|
:main-opts ["-m" "honey.gen-doc-tests"]}
|
||||||
|
|
||||||
:test-doc {:replace-paths ["src" "target/test-doc-blocks/test"]}
|
:test-doc {:replace-paths ["src" "target/test-doc-blocks/test"]}
|
||||||
|
|
@ -35,5 +35,5 @@
|
||||||
"-c" "{:warnings,{:single-segment-namespace,false}}"
|
"-c" "{:warnings,{:single-segment-namespace,false}}"
|
||||||
"-d" "target/test-doc-blocks/test"]}
|
"-d" "target/test-doc-blocks/test"]}
|
||||||
|
|
||||||
:eastwood {:extra-deps {jonase/eastwood {:mvn/version "0.9.9"}}
|
:eastwood {:extra-deps {jonase/eastwood {:mvn/version "1.0.0"}}
|
||||||
:main-opts ["-m" "eastwood.lint" "{:source-paths,[\"src\"]}"]}}}
|
:main-opts ["-m" "eastwood.lint" "{:source-paths,[\"src\"]}"]}}}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue