Skip to content

Commit

Permalink
Improve CI
Browse files Browse the repository at this point in the history
  • Loading branch information
lispyclouds committed Feb 22, 2020
1 parent 5b7e015 commit db8c81d
Showing 1 changed file with 13 additions and 6 deletions.
19 changes: 13 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,18 @@ on: [push]
jobs:
build:

runs-on: ubuntu-latest
runs-on: "ubuntu-latest"

steps:
- uses: actions/checkout@v1
- name: Install dependencies
run: lein deps
- name: Run tests
run: lein kaocha
- name: "Checkout code"
uses: "actions/checkout@v2"

- name: "Restore Cache"
uses: "actions/cache@v1"
with:
path: "~/.m2/repository"
key: "${{ runner.os }}-lein-${{ hashFiles('project.clj') }}"
restore-keys: "${{ runner.os }}-lein-"

- name: "Run tests"
run: "lein kaocha"

0 comments on commit db8c81d

Please sign in to comment.