From 1181287359252fa0c9ba5e22811f9a55a08f81a1 Mon Sep 17 00:00:00 2001 From: Teodor Heggelund Date: Fri, 3 Jan 2025 18:34:23 +0100 Subject: [PATCH] Run clj tests on CI too --- .github/workflows/ci.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d49b230..baa7c23 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -55,6 +55,21 @@ jobs: run: | bb run test + clj-run-test-linux: + runs-on: ubuntu-latest + strategy: + fail-fast: false + matrix: + bb-version: [1.3.190, latest] + steps: + - name: Check out repository code + uses: actions/checkout@v3 + - name: Install clojure tools + uses: DeLaGuardo/setup-clojure@9.4 + with: + bb: ${{ matrix.bb-version }} + - run: bb run test:clj + bb-run-lint: runs-on: ubuntu-latest strategy: