Skip to content

Commit

Permalink
bump versions and incorporate license into build process (#62)
Browse files Browse the repository at this point in the history
* bump dep versions

* incorporate license into build
  • Loading branch information
robertluo authored Jan 9, 2024
1 parent 86bbc46 commit f2f2d8f
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 9 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,15 @@ jobs:

- uses: DeLaGuardo/[email protected]
with:
cli: '1.11.1.1208'
cli: '1.11.1.1435'

- uses: actions/cache@v3
with:
path: ~/.m2
key: default-build

- run: clojure -T:build ci

- uses: codecov/codecov-action@v3

- name: deploy
Expand Down
6 changes: 5 additions & 1 deletion build.clj
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,11 @@
[opts]
(let [defaults {:lib 'io.github.robertluo/fun-map
:version (format "0.5.%s" (b/git-count-revs nil))
:scm {:url "https://github.com/robertluo/fun-map"}}]
:scm {:url "https://github.com/robertluo/fun-map"}
:pom-data [[:licenses
[:license
[:name "Eclipse Public License 1.0"]
[:url "https://opensource.org/license/epl-1-0/"]]]]}]
(merge defaults opts)))

(defn tests
Expand Down
11 changes: 5 additions & 6 deletions deps.edn
Original file line number Diff line number Diff line change
@@ -1,18 +1,17 @@
{:paths ["src"]
:aliases {:dev ;for development
{:extra-paths ["test"]
:extra-deps {manifold/manifold {:mvn/version "0.3.0"}
org.clojure/clojurescript {:mvn/version "1.11.60"}}}
:extra-deps {manifold/manifold {:mvn/version "0.4.1"}
org.clojure/clojurescript {:mvn/version "1.11.121"}}}
:test ;run tests under console. e.g. clj -M:dev:test
{:extra-deps {lambdaisland/kaocha {:mvn/version "1.73.1175"}
{:extra-deps {lambdaisland/kaocha {:mvn/version "1.87.1366"}
lambdaisland/kaocha-cloverage {:mvn/version "1.1.89"}}
:main-opts ["-m" "kaocha.runner"]}
:cljs-test
{:extra-paths ["test"]
:extra-deps {olical/cljs-test-runner {:mvn/version "3.8.0"}}
:main-opts ["-m" "cljs-test-runner.main"]}
:build ;customized building process running. e.g. clj -T:build ci
{:deps {io.github.seancorfield/build-clj {:git/tag "v0.9.2"
:git/sha "9c9f078"}}
{:deps {io.github.robertluo/build-clj {:git/sha "5d45f58cc20747c136bb320c9b13d65d2bf4cf58"}}
:ns-default build}
:clj-kondo {:extra-deps {clj-kondo/clj-kondo {:mvn/version "2023.01.16"}}}}}
:clj-kondo {:extra-deps {clj-kondo/clj-kondo {:mvn/version "2023.12.15"}}}}}

0 comments on commit f2f2d8f

Please sign in to comment.