8000 Fix Minitest compatibility with mocha https://github.com/freerange/mocha/issues/614 · geekq/workflow@40c9f7a · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Fix Minitest compatibility with mocha https://github.com/freerange/mo… #23

Fix Minitest compatibility with mocha https://github.com/freerange/mo…

Fix Minitest compatibility with mocha https://github.com/freerange/mo… #23

Workflow file for this run

name: Test
on:
push:
branches:
- develop
- 1-2-stable
- 2-0-stable
pull_request:
jobs:
test:
name: Test
runs-on: ubuntu-latest
timeout-minutes: 15
strategy:
fail-fast: false
matrix:
ruby: [2.7, 3.1, 3.3]
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true # Also installs gems
- name: Install prerequisites for tests
run: sudo apt-get install -y graphviz
- name: Run tests
run: bundle exec rake test
0