From 2fa4cee3873cb8ad1908a7b5f7076b43bf11d3fb Mon Sep 17 00:00:00 2001 From: Asko Nõmm Date: Wed, 8 Oct 2025 01:30:37 +0300 Subject: Add test workflow --- .github/workflows/tests.yml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .github/workflows/tests.yml (limited to '.github') diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml new file mode 100644 index 0000000..b186f62 --- /dev/null +++ b/.github/workflows/tests.yml @@ -0,0 +1,25 @@ +name: Tests +on: [push] +jobs: + tests: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v2 + + - name: Setup Java + uses: actions/setup-java@v3 + with: + distribution: 'zulu' + java-version: '24' + + - name: Setup Clojure + uses: DeLaGuardo/setup-clojure@13.4 + with: + cli: 'latest' + clj-kondo: 'latest' + bb: 'latest' + + - name: Run tests + run: | + clj -X:test -- cgit v1.2.3