Skip to content

Commit 9c26615

Browse files
committed
Explicitly declare bash shell in Github actions
1 parent ca80ba6 commit 9c26615

1 file changed

Lines changed: 6 additions & 1 deletion

File tree

.github/workflows/github-actions.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,16 @@ jobs:
1515
python-version: ${{ matrix.python-version }}
1616
- name: Display Python Version
1717
run: python -c "import sys; print(sys.version)"
18+
shell: bash
1819
- name: Install STUMPY And Other Dependencies
1920
run: pip install --editable .[ci]
21+
shell: bash
2022
- name: Run Black
2123
run: black --check --diff ./
24+
shell: bash
2225
- name: Run Flake8
2326
run: flake8 ./
27+
shell: bash
2428
- name: Run Unit Tests
25-
run: ./test.sh unit
29+
run: ./test.sh unit
30+
shell: bash

0 commit comments

Comments
 (0)