Bump sinatra from 4.1.1 to 4.2.0 (#21) #47
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: Tests | |
| on: push | |
| permissions: | |
| contents: read | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| ruby-version: ['3.2', '3.3', '3.4'] | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Set up Ruby | |
| # To automatically get bug fixes and new Ruby versions for ruby/setup-ruby, | |
| # change this to (see call to undeclared function 'thin_http_parser_init'; ISO C99 and later do not support implicit function declarations | |
| #versioning): | |
| # uses: ruby/setup-ruby@v1 | |
| uses: ruby/setup-ruby@v1 | |
| with: | |
| ruby-version: ${{ matrix.ruby-version }} | |
| bundler-cache: true # runs 'bundle install' and caches installed gems automatically | |
| - name: Run tests | |
| env: | |
| APP_ENV: test | |
| run: bundle exec rake |