Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We鈥檒l occasionally send you account related emails.

Already on GitHub? Sign in to your account

CI: configure bash as default shell #9587

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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 }}