From a724cf0c53b6789ed54fcceb143509654311bead Mon Sep 17 00:00:00 2001 From: Ric Evans Date: Fri, 18 Mar 2022 12:59:53 -0500 Subject: [PATCH] add `shell: bash` statements --- action.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/action.yml b/action.yml index f040e54..383441f 100644 --- a/action.yml +++ b/action.yml @@ -16,5 +16,8 @@ runs: using: "composite" steps: - run: pip install --upgrade pip + shell: bash - run: pip install flake8 - - run: flake8 . --ignore=E203,E226,E228,E231,E501,W503,W504 --benchmark \ No newline at end of file + shell: bash + - run: flake8 . --ignore=E203,E226,E228,E231,E501,W503,W504 --benchmark + shell: bash \ No newline at end of file