Skip to content

Commit c9f917b

Browse files
authored
Create clojure.yml
1 parent 223da65 commit c9f917b

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

.github/workflows/clojure.yml

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: Clojure CI
2+
3+
on: [push]
4+
5+
jobs:
6+
build:
7+
8+
runs-on: ubuntu-latest
9+
10+
steps:
11+
- uses: actions/checkout@v1
12+
- name: Install dependencies
13+
run: lein deps
14+
- name: Run tests
15+
run: lein test

0 commit comments

Comments
 (0)