From e2a677f99232816e1d4aa3d900bf65caeccc46b3 Mon Sep 17 00:00:00 2001 From: Akshay Karle <1443108+akshaykarle@users.noreply.github.com> Date: Thu, 18 Apr 2024 10:12:46 +0100 Subject: [PATCH] add a shell to github action to run tests --- .github/workflows/test.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index ee75685..9954ad0 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -10,9 +10,12 @@ jobs: - name: Setup run: ./setup.sh + shell: bash - name: Install python dependencies run: poetry install + shell: bash - name: Test run: poetry run python -m unittest tests/**.py + shell: bash