From 0134d66f2e46f8d5de1fbe272b473ed241aceae8 Mon Sep 17 00:00:00 2001 From: Michiel Borkent Date: Thu, 11 Jul 2024 11:00:56 +0200 Subject: [PATCH] Add CI for Windows testing --- .github/workflows/ci.yml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..52e67ec --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,25 @@ +name: CI + +on: [push] + +jobs: + build: + runs-on: ubuntu-latest + steps: + + - uses: actions/checkout@v4 + + - name: Prepare java + uses: actions/setup-java@v4 + with: + distribution: 'zulu' + java-version: '21' + + - name: Setup Clojure + uses: DeLaGuardo/setup-clojure@12.5 + with: + cli: latest + bb: latest + + - name: Setup tmate session + uses: mxschmitt/action-tmate@v3