Skip to content

Commit

Permalink
Specify the shell
Browse files Browse the repository at this point in the history
  • Loading branch information
certik committed Jan 14, 2022
1 parent 5c36f23 commit d3bbd50
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,19 +23,19 @@ jobs:

- name: Install Windows Conda Packages
if: contains(matrix.os, 'windows')
shell: bash -l {0}
run: conda install -c conda-forge m2-bison=3.4

- name: Install Linux / macOS Conda Packages
if: contains(matrix.os, 'ubuntu') || contains(matrix.os, 'macos')
shell: bash -l {0}
run: conda install bison=3.4

- name: Conda info
shell: bash -l {0}
run: conda info

- name: Conda list
shell: pwsh
run: conda list
run: |
conda info
conda list
- name: Build and test
shell: bash -l {0}
Expand Down

0 comments on commit d3bbd50

Please sign in to comment.