Skip to content

Commit cf72e33

Browse files
🐛 Shell is required parameter if run is set
1 parent 3d8cbba commit cf72e33

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

action.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ runs:
4040
run: |
4141
sudo apt-get update
4242
sudo apt-get install --yes ${{ inputs.apt-packages }}
43+
shell: bash
4344

4445
- name: Tune PostgreSQL for test performance
4546
if: ${{ inputs.pg-service != '' && inputs.optimize-postgres == 'yes' }}
@@ -61,6 +62,7 @@ runs:
6162
done
6263
6364
echo "Done configuring PostgreSQL for faster tests."
65+
shell: bash
6466

6567
- uses: actions/setup-python@v4
6668
with:
@@ -73,6 +75,7 @@ runs:
7375
pip install -r requirements/ci.txt \
7476
--use-pep517 \
7577
--use-feature=no-binary-enable-wheel-cache
78+
shell: bash
7679

7780
# TODO: enable cache
7881
- uses: actions/setup-node@v3
@@ -83,4 +86,5 @@ runs:
8386
run: |
8487
npm ci ${{ inputs.npm-ci-flags }}
8588
npm run build
89+
shell: bash
8690

0 commit comments

Comments
 (0)