Skip to content

Merge branch 'main' into customized/px5 #49

Merge branch 'main' into customized/px5

Merge branch 'main' into customized/px5 #49

Workflow file for this run

name: Test with Minitest
on:
push:
paths: [.github/workflows/test.yml, lib/**, test/**, Gemfile, '*.gemspec']
pull_request:
paths: [.github/workflows/test.yml, lib/**, test/**, Gemfile, '*.gemspec']
jobs:
test:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest]
ruby-version: ['3', '3.1']
runs-on: ${{ matrix.os }}
timeout-minutes: 10
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
bundler-cache: true
- name: Test with Minitest
run: bundle exec rake test:isolated