Skip to content

Update fakefs requirement from ~> 0.6 to ~> 2.5 #48

Update fakefs requirement from ~> 0.6 to ~> 2.5

Update fakefs requirement from ~> 0.6 to ~> 2.5 #48

Workflow file for this run

name: Test
on:
- pull_request
- push
env:
BUNDLE_WITHOUT: release
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
include:
- ruby: "2.7"
- ruby: "3.0"
coverage: "yes"
env:
COVERAGE: ${{ matrix.coverage }}
steps:
- uses: actions/checkout@v2
- name: Install Ruby ${{ matrix.ruby }}
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Run tests
run: bundle exec rake
- name: Build gem
run: gem build *.gemspec