Skip to content

Add prettier name for CI jobs #71

Add prettier name for CI jobs

Add prettier name for CI jobs #71

Workflow file for this run

name: test
on: [push, pull_request]
env:
ENABLE_WERROR: true
jobs:
test:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest]
ruby: ['3.2', '3.3', head, debug]
mn_threads: ["0", "1"]
exclude:
- ruby: "3.2"
mn_threads: "1"
name: test ${{ matrix.ruby }} (${{ matrix.os }}, mn_threads: ${{ matrix.mn_threads }})

Check failure on line 19 in .github/workflows/test.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/test.yml

Invalid workflow file

You have an error in your yaml syntax on line 19
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
- name: bundle exec rake
run: |
ruby -v
bundle exec rake
env:
RUBY_MN_THREADS: ${{ matrix.mn_threads }}