Skip to content

chore: Update fakefs requirement from ~> 2.8.0 to ~> 3.0.0 (#1050) #394

chore: Update fakefs requirement from ~> 2.8.0 to ~> 3.0.0 (#1050)

chore: Update fakefs requirement from ~> 2.8.0 to ~> 3.0.0 (#1050) #394

Workflow file for this run

name: rubocop
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
test:
strategy:
fail-fast: false
matrix:
ruby: [3.1, 3.2, 3.3]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
- name: Install dependencies
run: bundle install
- name: Run rubocop
run: bundle exec rake rubocop
- name: Run tests
run: bundle exec rake test