Bump sorbet from 0.5.11026 to 0.5.11039 (#265) #590
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: Ruby | |
'on': push | |
jobs: | |
Ruby-CI: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
ruby-version: ['2.7', '3.0', '3.1', '3.2', '3.3'] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ${{ matrix.ruby-version }} | |
bundler-cache: true | |
- run: bundle install | |
- name: Run tests | |
run: bundle exec rake | |
- name: Upload to Codecov | |
uses: codecov/codecov-action@v3 | |
with: | |
file: coverage/coverage.xml |