Skip to content

Run with --jobs=2 automatically on CI #1511

Run with --jobs=2 automatically on CI

Run with --jobs=2 automatically on CI #1511

Workflow file for this run

name: Run test on container
on:
push:
branches:
- master
pull_request: {}
jobs:
test:
strategy:
matrix:
container_tag:
- "2.7"
- "3.0"
- "3.1"
- "3.2"
# - "master-nightly-focal"
task:
- test
- test:output
- build
runs-on: ubuntu-latest
container:
image: rubylang/ruby:${{ matrix.container_tag }}
steps:
- uses: actions/checkout@v3
- name: Run test
run: |
git config --global --add safe.directory /__w/steep/steep
ruby -v
gem install bundler
bin/setup
bundle exec rake ${{matrix.task}}