Bump rubygems/release-gem from 612653d273a73bdae1df8453e090060bb4db5f31 to 9e85cb11501bebc2ae661c1500176316d3987059 #232
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: [push, pull_request] | |
jobs: | |
ruby-versions: | |
uses: ruby/actions/.github/workflows/ruby_versions.yml@master | |
with: | |
engine: cruby | |
min_version: 2.4 | |
test: | |
needs: ruby-versions | |
name: build (${{ matrix.ruby }} / ${{ matrix.os }}) | |
strategy: | |
fail-fast: false | |
matrix: | |
ruby: ${{ fromJson(needs.ruby-versions.outputs.versions) }} | |
os: [ ubuntu-latest, macos-latest ] | |
# CRuby < 2.6 does not support macos-arm64, so test those on amd64 instead | |
exclude: | |
- { os: macos-latest, ruby: '2.4' } | |
- { os: macos-latest, ruby: '2.5' } | |
include: | |
- { os: macos-13, ruby: '2.4' } | |
- { os: macos-13, ruby: '2.5' } | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ${{ matrix.ruby }} | |
bundler-cache: true # 'bundle install' and cache | |
- name: Run test | |
run: bundle exec rake test | |
- name: RBS validate | |
run: bundle exec rbs -r openssl -r digest -r uri -r erb -r singleton -r tempfile -r socket -I sig validate | |
if: ${{ ! startsWith(matrix.ruby, '2.') }} # rbs requires ruby 3.0+ |