Bump to Ruby 3.4.4 #17
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: Specs | |
| on: | |
| # Run this workflow manually from the Actions tab. | |
| workflow_dispatch: | |
| # Run when pushing to `main`. | |
| push: | |
| branches: | |
| - main | |
| # Run when making a PR against `main`. | |
| pull_request: | |
| branches: | |
| - main | |
| # Set permissions of the GITHUB_TOKEN to allow pushing. | |
| permissions: | |
| contents: write | |
| defaults: | |
| run: | |
| shell: bash | |
| jobs: | |
| test: | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: [ubuntu-latest, macos-latest, ubuntu-24.04-arm] | |
| # ruby: ["3.3", "3.4", head, jruby, truffleruby, truffleruby+graalvm] | |
| ruby: ["3.4.4"] | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - name: Checkout repo | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: Install Ruby ${{ matrix.ruby }} | |
| uses: ruby/setup-ruby@v1 | |
| with: | |
| ruby-version: ${{ matrix.ruby }} | |
| bundler-cache: true | |
| - name: Run tests | |
| run: make test |