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
50 changes: 0 additions & 50 deletions .circleci/config.yml

This file was deleted.

94 changes: 94 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,94 @@
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

Codecov:
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: 🧪 Generate codecov
run: bin/kaocha --plugin cloverage --codecov

- name: Upload to codecov
uses: codecov/codecov-action@v5
with:
#fail_ci_if_error: true
name: codecov-report
files: target/coverage/codecov.json
token: ${{ secrets.CODECOV_TOKEN }}
slug: lambdaisland/kaocha-cljs
verbose: true
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,5 @@ nashorn_code_cache
out
.store
.temp
.lsp/
.clj-kondo/
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# kaocha-cljs

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

ClojureScript support for Kaocha
Expand Down
2 changes: 1 addition & 1 deletion bb.edn
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{:deps
{lambdaisland/open-source {:git/url "https://github.com/lambdaisland/open-source"
:git/sha "8c77e20f6188a30cfcc50c64afb86fa89a9dcb47"}}}
:git/sha "e0e234aea52aeafac6ebb06c4a5149d83977e6a0"}}}