Skip to content

fix: Fix evaluation handlers to return evaluated result value #164

fix: Fix evaluation handlers to return evaluated result value

fix: Fix evaluation handlers to return evaluated result value #164

Workflow file for this run

name: test
on: [push]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: DeLaGuardo/setup-clojure@master
with:
bb: latest
clj-kondo: latest
cljstyle: latest
- uses: actions/cache@v4
with:
path: ~/.m2
key: test-m2-${{ hashFiles('bb.edn') }}
- run: bb check
- run: |
git diff -- . ':(exclude)dev/analysis.edn'
if [[ -n $(git diff -- . ':(exclude)dev/analysis.edn') ]]; then
echo "Detected uncommitted changes"
exit 1
fi