Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
47 changes: 0 additions & 47 deletions .circleci/config.yml

This file was deleted.

44 changes: 44 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
name: Continuous Delivery

on: push

jobs:
Kaocha:
runs-on: ${{matrix.sys.os}}

strategy:
matrix:
sys:
# - { os: macos-latest, shell: bash }
- { os: ubuntu-latest, shell: bash }
# - { os: windows-latest, shell: powershell }

defaults:
run:
shell: ${{matrix.sys.shell}}

steps:
- uses: actions/checkout@v2

- name: 🔧 Install java
uses: actions/setup-java@v1
with:
java-version: '25'

- name: 🔧 Install clojure
uses: DeLaGuardo/setup-clojure@master
with:
cli: '1.12.3.1577'

- name: 🗝 maven cache
uses: actions/cache@v4
with:
path: |
~/.m2
~/.gitlibs
key: ${{ runner.os }}-maven-${{ github.sha }}
restore-keys: |
${{ runner.os }}-maven-

- name: 🧪 Run tests
run: bin/kaocha
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# lambdaisland/deep-diff2

<!-- badges -->
[![CircleCI](https://circleci.com/gh/lambdaisland/deep-diff2.svg?style=svg)](https://circleci.com/gh/lambdaisland/deep-diff2) [![cljdoc badge](https://cljdoc.org/badge/lambdaisland/deep-diff2)](https://cljdoc.org/d/lambdaisland/deep-diff2) [![Clojars Project](https://img.shields.io/clojars/v/lambdaisland/deep-diff2.svg)](https://clojars.org/lambdaisland/deep-diff2)
[![GitHub Actions](https://github.com/lambdaisland/deep-diff2/actions/workflows/main.yml/badge.svg)](https://github.com/lambdaisland/deep-diff2/actions/workflows/main.yml) [![cljdoc badge](https://cljdoc.org/badge/lambdaisland/deep-diff2)](https://cljdoc.org/d/lambdaisland/deep-diff2) [![Clojars Project](https://img.shields.io/clojars/v/lambdaisland/deep-diff2.svg)](https://clojars.org/lambdaisland/deep-diff2)
<!-- /badges -->

Recursively compare Clojure or ClojureScript data structures, and produce a colorized diff of the result.
Expand Down Expand Up @@ -294,7 +294,7 @@ Another library that implements a form of data structure diffing is [editscript]
<!-- license -->
## License

Copyright &copy; 2018-2024 Arne Brasseur and contributors
Copyright &copy; 2018-2025 Arne Brasseur and contributors

Available under the terms of the Eclipse Public License 1.0, see LICENSE.txt
<!-- /license -->
2 changes: 1 addition & 1 deletion bb.edn
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{:deps
{lambdaisland/deep-diff2 {:local/root "."}
lambdaisland/open-source {:git/url "https://github.com/lambdaisland/open-source"
:git/sha "0bd06e00f3b930d9a0fdd0ed90d47a9a333b19da"}}
:git/sha "e0e234aea52aeafac6ebb06c4a5149d83977e6a0"}}
:tasks
{test:bb {:doc "Run babashka tests with custom runner"
:extra-paths ["src" "test"]
Expand Down