From 520792fac8b9088a130fe83e46c7ce4eb870ab40 Mon Sep 17 00:00:00 2001 From: Alexander Ivanov Date: Tue, 6 Oct 2020 21:37:47 +0100 Subject: [PATCH] Add a github actions script As suggested by Github, without any changes. --- .github/workflows/clojure.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/clojure.yml diff --git a/.github/workflows/clojure.yml b/.github/workflows/clojure.yml new file mode 100644 index 0000000..22bfe20 --- /dev/null +++ b/.github/workflows/clojure.yml @@ -0,0 +1,19 @@ +name: Clojure CI + +on: + push: + branches: [ master ] + pull_request: + branches: [ master ] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + - name: Install dependencies + run: lein deps + - name: Run tests + run: lein test