From 47a449113fa9af1ab7eec3f9436a36e7fe2b1a29 Mon Sep 17 00:00:00 2001 From: AndBondStyle Date: Mon, 4 Mar 2024 00:04:57 +0000 Subject: [PATCH] Set default shell for CI --- .github/workflows/test.yml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 1a94a4e..9a48d6e 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -12,7 +12,7 @@ concurrency: jobs: pre-commit: - name: Check pre-commit hooks + name: Run pre-commit hooks runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 @@ -20,7 +20,7 @@ jobs: - uses: pre-commit/action@v3.0.1 extract-image: - name: Extract image version + name: Get image version runs-on: ubuntu-latest outputs: image-url: ${{ steps.extractor.outputs.image_url }} @@ -40,6 +40,11 @@ jobs: container: image: ${{ needs.extract-image.outputs.image-url}} + # TODO: Fix in dockerfile + defaults: + run: + shell: bash + steps: - uses: actions/checkout@v3