File tree Expand file tree Collapse file tree 3 files changed +30
-5
lines changed
Expand file tree Collapse file tree 3 files changed +30
-5
lines changed Original file line number Diff line number Diff line change 1+ name : Tests
2+ on : [push, pull_request]
3+ jobs :
4+ test :
5+ runs-on : ubuntu-latest
6+ steps :
7+ - name : Checkout
8+ uses : actions/checkout@v5
9+
10+ - name : Prepare java
11+ uses : actions/setup-java@v5
12+ with :
13+ distribution : ' zulu'
14+ java-version : ' 11'
15+
16+ - name : Install clojure tools
17+ uses : DeLaGuardo/setup-clojure@13.4
18+ with :
19+ lein : 2.12.0
20+
21+ - name : Cache clojure dependencies
22+ uses : actions/cache@v4
23+ with :
24+ path : ~/.m2/repository
25+ key : cljdeps-${{ hashFiles('project.clj') }}
26+ restore-keys : cljdeps-
27+
28+ - name : Run tests
29+ run : lein test-all
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1- # Compojure
2-
3- [ ![ Build Status] ( https://travis-ci.org/weavejester/compojure.svg?branch=master )] ( https://travis-ci.org/weavejester/compojure )
1+ # Compojure [ ![ Build Status] ( https://github.com/weavejester/compojure/actions/workflows/test.yml/badge.svg )] ( https://github.com/weavejester/compojure/actions/workflows/test.yml )
42
53Compojure is a small routing library for [ Ring] [ 1 ] that allows web
64applications to be composed of small, independent parts.
You can’t perform that action at this time.
0 commit comments