Bump rails from 42db7f3
to 1b97206
#581
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: CI | |
on: [push, pull_request] | |
jobs: | |
test: | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
ruby: ["3.0", "3.1", "3.2", "head"] | |
include: | |
- ruby: "head" | |
experimental: true | |
runs-on: ${{ matrix.os }} | |
continue-on-error: ${{ !!matrix.experimental }} | |
name: Ruby ${{ matrix.ruby }} on ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ${{ matrix.ruby }} | |
bundler-cache: true | |
cache-version: 3 | |
- name: Check if documentation is up to date | |
run: bundle exec rake ruby_lsp:check_docs | |
- name: Typecheck | |
if: matrix.os != 'windows-latest' | |
run: bundle exec srb tc | |
- name: Lint Ruby files | |
run: bin/rubocop | |
- name: Run tests | |
run: bin/rails db:setup && bin/rails db:migrate && bin/rails test |