Bump ruby/setup-ruby from 1.257.0 to 1.263.0 #108
Workflow file for this run
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: CI | |
| on: [push] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| ruby: | |
| - 2.7 | |
| - 3.0 | |
| - 3.1 | |
| - 3.2 | |
| - 3.3 | |
| name: Tests Ruby ${{ matrix.ruby }} | |
| steps: | |
| - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 | |
| - name: Set up Ruby ${{ matrix.ruby }} | |
| uses: ruby/setup-ruby@0481980f17b760ef6bca5e8c55809102a0af1e5a # v1.263.0 | |
| with: | |
| ruby-version: ${{ matrix.ruby }} | |
| bundler: latest | |
| - name: Install required packages | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get -y install libsqlite3-dev | |
| - name: Run tests | |
| run: | | |
| bundle install --jobs 4 --retry 3 | |
| bundle exec rake | |
| lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 | |
| - name: Set up Ruby | |
| uses: ruby/setup-ruby@0481980f17b760ef6bca5e8c55809102a0af1e5a # v1.263.0 | |
| - name: Install required packages | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get -y install libsqlite3-dev | |
| - name: Run style checks | |
| run: | | |
| gem install bundler | |
| bundle install --jobs 4 --retry 3 | |
| bundle exec rubocop |