Skip to content

Commit c0f154f

Browse files
committed
[nop] Bump deps
1 parent f2020a5 commit c0f154f

File tree

5 files changed

+45
-16
lines changed

5 files changed

+45
-16
lines changed
Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,26 @@
1-
name: Main tests
1+
name: Clj tests
22
on: [push, pull_request]
33

44
jobs:
55
tests:
66
strategy:
77
matrix:
8-
java: ['17', '18', '19']
8+
java: ['17', '19', '21']
99
os: [ubuntu-latest]
10-
1110
runs-on: ${{ matrix.os }}
1211
steps:
1312
- uses: actions/checkout@v4
1413
- uses: actions/setup-java@v4
1514
with:
1615
distribution: 'corretto'
1716
java-version: ${{ matrix.java }}
18-
1917
- uses: DeLaGuardo/[email protected]
2018
with:
2119
lein: latest
22-
2320
- uses: actions/cache@v4
2421
id: cache-deps
2522
with:
2623
path: ~/.m2/repository
2724
key: deps-${{ hashFiles('project.clj') }}
2825
restore-keys: deps-
29-
30-
- run: lein test-all
26+
- run: lein test-clj

.github/workflows/cljs-tests.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: Cljs tests
2+
on: [push, pull_request]
3+
4+
jobs:
5+
tests:
6+
strategy:
7+
matrix:
8+
java: ['21']
9+
os: [ubuntu-latest]
10+
runs-on: ${{ matrix.os }}
11+
steps:
12+
- uses: actions/checkout@v4
13+
- uses: actions/setup-java@v4
14+
with:
15+
distribution: 'corretto'
16+
java-version: ${{ matrix.java }}
17+
- uses: DeLaGuardo/[email protected]
18+
with:
19+
lein: latest
20+
- uses: actions/cache@v4
21+
id: cache-deps
22+
with:
23+
path: ~/.m2/repository
24+
key: deps-${{ hashFiles('project.clj') }}
25+
restore-keys: deps-
26+
- run: lein test-cljs

.github/workflows/graal-tests.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Graal tests
22
on: [push, pull_request]
33

44
jobs:
5-
test:
5+
tests:
66
strategy:
77
matrix:
88
java: ['17']
@@ -29,4 +29,8 @@ jobs:
2929
key: deps-${{ hashFiles('deps.edn') }}
3030
restore-keys: deps-
3131

32-
- run: bb graal-tests
32+
- name: Run Graal tests
33+
run: bb graal-tests
34+
35+
# - name: Run Babashka tests
36+
# run: bb bb-tests

README.md

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@ It works great with [Telemere](https://www.taoensso.com/telemere) and [Tufte](ht
1717

1818
- `2025-04-29` `v2.1.0`: [release info](../../releases/tag/v2.1.0) (v2 expands Truss's scope from just inline assertions to a general toolkit for Clojure/Script errors)
1919

20-
[![Main tests][Main tests SVG]][Main tests URL]
20+
[![Clj tests][Clj tests SVG]][Clj tests URL]
21+
[![Cljs tests][Cljs tests SVG]][Cljs tests URL]
2122
[![Graal tests][Graal tests SVG]][Graal tests URL]
2223

2324
See [here][GitHub releases] for earlier releases.
@@ -177,7 +178,9 @@ Licensed under [EPL 1.0](LICENSE.txt) (same as Clojure).
177178
[Clojars SVG]: https://img.shields.io/clojars/v/com.taoensso/truss.svg
178179
[Clojars URL]: https://clojars.org/com.taoensso/truss
179180

180-
[Main tests SVG]: https://github.com/taoensso/truss/actions/workflows/main-tests.yml/badge.svg
181-
[Main tests URL]: https://github.com/taoensso/truss/actions/workflows/main-tests.yml
181+
[Clj tests SVG]: https://github.com/taoensso/truss/actions/workflows/clj-tests.yml/badge.svg
182+
[Clj tests URL]: https://github.com/taoensso/truss/actions/workflows/clj-tests.yml
183+
[Cljs tests SVG]: https://github.com/taoensso/truss/actions/workflows/cljs-tests.yml/badge.svg
184+
[Cljs tests URL]: https://github.com/taoensso/truss/actions/workflows/cljs-tests.yml
182185
[Graal tests SVG]: https://github.com/taoensso/truss/actions/workflows/graal-tests.yml/badge.svg
183-
[Graal tests URL]: https://github.com/taoensso/truss/actions/workflows/graal-tests.yml
186+
[Graal tests URL]: https://github.com/taoensso/truss/actions/workflows/graal-tests.yml

project.clj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@
1212

1313
:profiles
1414
{;; :default [:base :system :user :provided :dev]
15-
:provided {:dependencies [[org.clojure/clojurescript "1.11.132"]
15+
:provided {:dependencies [[org.clojure/clojurescript "1.12.42"]
1616
[org.clojure/clojure "1.11.4"]]}
17-
:c1.12 {:dependencies [[org.clojure/clojure "1.12.0"]]}
17+
:c1.12 {:dependencies [[org.clojure/clojure "1.12.1"]]}
1818
:c1.11 {:dependencies [[org.clojure/clojure "1.11.4"]]}
1919
:c1.10 {:dependencies [[org.clojure/clojure "1.10.3"]]}
2020

@@ -36,7 +36,7 @@
3636

3737
:dependencies
3838
[[org.clojure/test.check "1.1.1"]
39-
[com.taoensso/encore "3.134.0"
39+
[com.taoensso/encore "3.138.0"
4040
:exclusions [com.taoensso/truss]]]
4141

4242
:plugins

0 commit comments

Comments
 (0)