Replace circle with actions
This commit is contained in:
parent
f65a869bf7
commit
1279a63a8b
2 changed files with 1 additions and 29 deletions
|
|
@ -1,28 +0,0 @@
|
||||||
version: 2.1
|
|
||||||
jobs:
|
|
||||||
build:
|
|
||||||
docker:
|
|
||||||
- image: circleci/clojure:openjdk-11-lein
|
|
||||||
steps:
|
|
||||||
- checkout
|
|
||||||
- run: lein test
|
|
||||||
|
|
||||||
# publish:
|
|
||||||
# docker:
|
|
||||||
# - image: circleci/clojure:openjdk-11-lein
|
|
||||||
# steps:
|
|
||||||
# - checkout
|
|
||||||
# - run: lein deploy clojars
|
|
||||||
|
|
||||||
|
|
||||||
workflows:
|
|
||||||
version: 2
|
|
||||||
build-publish:
|
|
||||||
jobs:
|
|
||||||
- build
|
|
||||||
# - publish:
|
|
||||||
# requires:
|
|
||||||
# - build
|
|
||||||
# filters:
|
|
||||||
# branches:
|
|
||||||
# only: master
|
|
||||||
|
|
@ -228,7 +228,7 @@
|
||||||
:date (:date doc)
|
:date (:date doc)
|
||||||
:localdate (Date/from (.toInstant (.atStartOfDay (:localdate doc) (ZoneId/of "UTC"))))
|
:localdate (Date/from (.toInstant (.atStartOfDay (:localdate doc) (ZoneId/of "UTC"))))
|
||||||
:localdatetime (Date/from (.toInstant (.atZone (:localdatetime doc) (ZoneId/of "UTC"))))
|
:localdatetime (Date/from (.toInstant (.atZone (:localdatetime doc) (ZoneId/of "UTC"))))
|
||||||
:localtime (Date/from (.toInstant (.atZone (LocalDateTime/of (LocalDate/EPOCH) (:localtime doc)) (ZoneId/of "UTC"))))} res)))))
|
:localtime (Date/from (.toInstant (.atZone (LocalDateTime/of (LocalDate/ofEpochDay 0) (:localtime doc)) (ZoneId/of "UTC"))))} res)))))
|
||||||
|
|
||||||
(deftest ^:integration test-insert-many
|
(deftest ^:integration test-insert-many
|
||||||
(testing "basic insertions"
|
(testing "basic insertions"
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue