From 43e45a7be90f088c732f6533a9d0326b2496bbbe Mon Sep 17 00:00:00 2001 From: Infininite-OptionZ <45809143+Infininite-OptionZ@users.noreply.github.com> Date: Thu, 5 Sep 2024 04:18:48 -0700 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 000000000..580119f2f --- /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