CI: Specify shell if necessary #34
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
- push | |
jobs: | |
cruby: | |
name: Test | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: | |
- ubuntu-latest | |
- macos-latest | |
- windows-latest | |
ruby: | |
- 3.3 | |
- 3.2 | |
- 3.1 | |
- 3.0 | |
- 2.7 | |
- 2.6 | |
- 2.5 | |
- 2.4 | |
- debug | |
exclude: | |
# - os: windows-latest | |
# ruby: 3.3 | |
- os: windows-latest | |
ruby: debug | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ${{ matrix.ruby }} | |
- name: Detect installable bundler version | |
run: | | |
case "${{ matrix.ruby }}" in | |
2.7|2.6) bundler_version="2.4.22" ;; | |
2.5|2.4) bundler_version="2.3.27" ;; | |
*) bundler_version="" ;; | |
esac | |
echo "bundler_version=$bundler_version" >> $GITHUB_ENV | |
shell: bash | |
- run: gem install bundler${bundler_version:+ -v $bundler_version} | |
shell: bash | |
- run: bundle install | |
- run: rake --trace compile | |
- run: rake build | |
- run: gem install pkg/*gem | |
- run: rake |