Skip to content

Commit

Permalink
Merge pull request #21 from DeLaGuardo/cli-windows
Browse files Browse the repository at this point in the history
Provision clojure cli on windows
  • Loading branch information
DeLaGuardo authored Mar 24, 2021
2 parents 91054c3 + 8361a25 commit 876708b
Show file tree
Hide file tree
Showing 7 changed files with 494 additions and 446 deletions.
13 changes: 10 additions & 3 deletions .github/workflows/smoke-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,9 @@ jobs:

strategy:
matrix:
operating-system: [ubuntu-latest, macOS-latest]
os: [ubuntu-latest, macOS-latest, windows-latest]

runs-on: ${{ matrix.operating-system }}
runs-on: ${{ matrix.os }}

steps:
- name: Checkout
Expand All @@ -55,8 +55,15 @@ jobs:
with:
cli: 1.10.1.693

- name: Execute clojure code
- name: Execute clojure code on Linux and MacOS
if: ${{ matrix.os != 'windows-latest' }}
run: clojure -e "(+ 1 1)"
shell: bash

- name: Execute clojure code on Windows
if: ${{ matrix.os == 'windows-latest' }}
run: clojure -e "(+ 1 1)"
shell: powershell

test-leiningen:

Expand Down
16 changes: 13 additions & 3 deletions dist/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/index.js.map

Large diffs are not rendered by default.

Loading

0 comments on commit 876708b

Please sign in to comment.