Skip to content

Commit

Permalink
CI: configure default shell
Browse files Browse the repository at this point in the history
  • Loading branch information
olleolleolle committed Apr 24, 2024
1 parent 96a4198 commit e486354
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/ci.yml
Expand Up @@ -10,6 +10,10 @@ on:
- master
- "*-stable"

defaults:
run:
shell: bash

jobs:
ci:
name: "Run Tests (${{ matrix.label }})"
Expand Down Expand Up @@ -37,11 +41,11 @@ jobs:
ruby-version: ${{ matrix.ruby_version }}
bundler-cache: true
- name: Run Minitest based tests
run: bash script/test
run: script/test
- name: Run Cucumber based tests
run: bash script/cucumber
run: script/cucumber
- name: Generate and Build a new site
run: bash script/default-site
run: script/default-site

xtras:
name: "${{ matrix.job_name }} (Ruby ${{ matrix.ruby_version }})"
Expand All @@ -67,4 +71,4 @@ jobs:
ruby-version: ${{ matrix.ruby_version }}
bundler-cache: true
- name: ${{ matrix.step_name }}
run: bash script/${{ matrix.script_file }}
run: script/${{ matrix.script_file }}

0 comments on commit e486354

Please sign in to comment.