Skip to content

Commit

Permalink
Add Clojure github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
rm-hull committed Nov 15, 2023
1 parent 74451c9 commit 8c6ddfd
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/clojure.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Clojure CI

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: Install dependencies
run: lein deps
- name: Run tests
run: lein with-profile +dev cloverage --coveralls
- name: Coveralls
uses: coverallsapp/github-action@v2
with:
file: target/coverage/coveralls.json

0 comments on commit 8c6ddfd

Please sign in to comment.