summaryrefslogtreecommitdiff
path: root/.forgejo/workflows
diff options
context:
space:
mode:
authorAsko Nõmm <asko@nmm.ee>2026-01-25 15:05:51 +0200
committerAsko Nõmm <asko@nmm.ee>2026-01-25 15:05:51 +0200
commitaf9375d8b45119b54f889aee2ce24ec3bb708cf0 (patch)
treeb2599fc407f8911a271f163ded704e006a10eb27 /.forgejo/workflows
parentfb14e942009200916b877cf19fcff4d62de8a867 (diff)
Update workflow
Diffstat (limited to '.forgejo/workflows')
-rw-r--r--.forgejo/workflows/tests.yml39
1 files changed, 39 insertions, 0 deletions
diff --git a/.forgejo/workflows/tests.yml b/.forgejo/workflows/tests.yml
new file mode 100644
index 0000000..438691a
--- /dev/null
+++ b/.forgejo/workflows/tests.yml
@@ -0,0 +1,39 @@
+name: Tests
+on:
+ push:
+ paths-ignore:
+ - README.md
+ - LICENSE.txt
+
+jobs:
+ test-runtimes:
+ runs-on: docker
+ steps:
+ - name: Checkout
+ uses: actions/checkout@v2
+
+ - name: Setup Java
+ uses: actions/setup-java@v3
+ with:
+ distribution: 'zulu'
+ java-version: '24'
+
+ - name: Setup Clojure
+ uses: DeLaGuardo/setup-clojure@13.4
+ with:
+ cli: 'latest'
+ clj-kondo: 'latest'
+ bb: 'latest'
+
+ - name: Test Babashka
+ run: |
+ bb test:bb
+
+ - name: Test Clojure
+ run: |
+ bb test:clj
+
+ - name: Test ClojureScript
+ run: |
+ bb test:cljs
+