From 5c0b89a6472e09b34d07ddb42cfe35d0d22fb094 Mon Sep 17 00:00:00 2001 From: Kirill Chernyshov Date: Thu, 8 Feb 2024 17:36:23 +0100 Subject: [PATCH] test --- .github/workflows/lein_test.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/workflows/lein_test.yml diff --git a/.github/workflows/lein_test.yml b/.github/workflows/lein_test.yml new file mode 100644 index 0000000..fe30d94 --- /dev/null +++ b/.github/workflows/lein_test.yml @@ -0,0 +1,23 @@ +name: Test OS leiningen +on: [push] +jobs: + test: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@main + - name: Prepare java + uses: actions/setup-java@v3 + with: + distribution: 'zulu' + java-version: '8' + - run: env + - name: Install leiningen + uses: ./ + with: + lein: 2.10.0 + github-token: ${{ secrets.GITHUB_TOKEN }} + - run: env + - run: DEBUG=true lein -v + - run: unset LEIN_JAR + - run: DEBUG=true lein -v