Update fakefs requirement from ~> 2.5 to ~> 3.0 #14
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: | |
name: Test on Ruby ${{ matrix.ruby }} | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
ruby: | |
- '3.3' | |
- '3.2' | |
- '3.1' | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ${{ matrix.ruby }} | |
bundler-cache: false # XXX: problems with nokogiri on ruby 3.1+ | |
- run: bundle install | |
- name: Run unit tests | |
run: bundle exec rake spec | |
- name: Run integration tests | |
run: bundle exec rake cucumber | |
lint: | |
name: Run Rubocop | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: 3.3 | |
bundler-cache: true | |
- env: | |
RAILS_ENV: "test" | |
run: bundle exec rubocop -c .rubocop.yml |