Skip to content

Commit

Permalink
More fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
DeLaGuardo committed Mar 24, 2021
1 parent a57db9c commit 8361a25
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/smoke-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,13 +36,7 @@ jobs:

strategy:
matrix:
include:
- os: windows-latest
shell: powershell
- os: ubuntu-latest
shell: bash
- os: macOS-latest
shell: bash
os: [ubuntu-latest, macOS-latest, windows-latest]

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

Expand All @@ -61,9 +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: ${{ matrix.shell }}
shell: powershell

test-leiningen:

Expand Down

0 comments on commit 8361a25

Please sign in to comment.