Try out actions
This commit is contained in:
parent
33bf023a88
commit
a91e97d488
1 changed files with 15 additions and 0 deletions
15
.github/workflows/clojure.yml
vendored
Normal file
15
.github/workflows/clojure.yml
vendored
Normal file
|
|
@ -0,0 +1,15 @@
|
||||||
|
name: Clojure CI
|
||||||
|
|
||||||
|
on: [push]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v1
|
||||||
|
- name: Install dependencies
|
||||||
|
run: lein deps
|
||||||
|
- name: Run tests
|
||||||
|
run: lein test
|
||||||
Loading…
Reference in a new issue