Gemfile: update numo-narray to numo-narray-alt in development group #320
This file contains hidden or 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: test | |
| on: | |
| - push | |
| - pull_request | |
| - workflow_dispatch | |
| jobs: | |
| build: | |
| name: ${{ matrix.runner }} Ruby ${{ matrix.ruby }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| runner: | |
| - ubuntu-latest | |
| - ubuntu-24.04-arm | |
| - macos-15-intel | |
| - macos-latest | |
| - windows-latest | |
| ruby: ["2.7", "3.2", "3.3", "3.4", "4.0"] | |
| runs-on: ${{ matrix.runner }} | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: ruby/setup-ruby@v1 | |
| with: | |
| ruby-version: ${{ matrix.ruby }} | |
| - name: Install dependencies | |
| run: bundle install | |
| - name: Download libui shared libraries | |
| run: bundle exec rake vendor:auto | |
| - name: Rake test (XVFB) | |
| uses: coactions/setup-xvfb@v1 | |
| with: | |
| run: bundle exec rake test |