dev deps: Add strict version contraints & CI: build gem with strict mode & CI: Use Ruby 3.3 for releases #186
Workflow file for this run
This file contains 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: | |
pull_request: {} | |
push: | |
branches: | |
- master | |
env: | |
BUNDLE_WITHOUT: release | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- ruby: truffleruby | |
- ruby: truffleruby+graalvm | |
- ruby: jruby | |
- ruby: "2.7" | |
rake_task: "rubocop test" | |
- ruby: "3.0" | |
- ruby: "3.1" | |
coverage: "yes" | |
- ruby: "3.2" | |
- ruby: "3.3" | |
- ruby: "3.3" | |
rubyopt: "--enable-frozen-string-literal" | |
env: | |
COVERAGE: ${{ matrix.coverage }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Ruby ${{ matrix.ruby }} | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ${{ matrix.ruby }} | |
bundler-cache: true | |
- name: Run tests | |
run: bundle exec rake ${{ matrix.rake_task }} RUBYOPT="${{ matrix.rubyopt }}" | |
- name: Build gem | |
run: gem build --strict --verbose *.gemspec | |
tests: | |
needs: | |
- test | |
runs-on: ubuntu-latest | |
name: Test suite | |
steps: | |
- run: echo Test suite completed |