Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
DeLaGuardo committed Nov 13, 2024
1 parent 0747838 commit e01f779
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/clj-msi.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Test clj-msi
on: [push]
jobs:
x:
runs-on: windows-latest
steps:
- name: Prepare java
uses: actions/setup-java@v3
with:
distribution: "zulu"
java-version: "8"

- name: Download clj-msi release
uses: robinraju/release-downloader@v1
with:
repository: "casselc/clj-msi"
tag: "v1.12.0.1479"
fileName: "clojure-1.12.0.1479.msi"

- name: Attempt to install clj-msi
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
msiexec.exe /i clojure-1.12.0.1479.msi
- name: call clojure
run: |
clojure.exe -e "(+ 1 1)"

0 comments on commit e01f779

Please sign in to comment.