From 61ebd07c865952e9c3041792c9dce3465c15a3db Mon Sep 17 00:00:00 2001 From: Henrique Marques Date: Sat, 12 Oct 2024 16:34:32 +0100 Subject: [PATCH] Create clojure.yml --- .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..580119f --- /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@v4 + - name: Install dependencies + run: lein deps + - name: Run tests + run: lein test