Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Specify the shell
  • Loading branch information
certik committed Jan 14, 2022
commit d3bbd508b2d44344b95226bad479bedcfb761a5e
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