Skip to content

Commit 95cf2a5

Browse files
Add an Actions workflow for tests
1 parent 0cfe812 commit 95cf2a5

1 file changed

Lines changed: 20 additions & 0 deletions

File tree

.github/workflows/test.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: lein all test
2+
3+
on:
4+
push:
5+
branches:
6+
- "main"
7+
pull_request:
8+
branches:
9+
- "main"
10+
11+
jobs:
12+
build:
13+
runs-on: ubuntu-latest
14+
15+
steps:
16+
- uses: actions/checkout@v5
17+
- name: Install dependencies
18+
run: lein deps
19+
- name: Run tests
20+
run: lein all test

0 commit comments

Comments
 (0)