Skip to content

Commit

Permalink
ci(lint): Set shell: bash so that "set -eo pipefail" is used
Browse files Browse the repository at this point in the history
  • Loading branch information
jpmckinney committed Jan 11, 2023
1 parent 82d93bd commit d00168e
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,10 @@ jobs:
python-version: 3.8
cache: pip
cache-dependency-path: setup.cfg
- run: curl -s -S --retry 3 $BASEDIR/tests/install.sh | bash -
- run: curl -s -S --retry 3 $BASEDIR/tests/script.sh | bash -
- shell: bash
run: curl -s -S --retry 3 $BASEDIR/tests/install.sh | bash -
- shell: bash
run: curl -s -S --retry 3 $BASEDIR/tests/script.sh | bash -
- run: pip install .[test]
- run: pytest /tmp/test_requirements.py
- run: pip install --upgrade check-manifest
Expand Down

0 comments on commit d00168e

Please sign in to comment.