Sha256: 7f6295022bac1b17da6fff78fc7cd41b756e71edf71b6193cf6e3d03a8f2b566
Contents?: true
Size: 747 Bytes
Versions: 1
Compression:
Stored size: 747 Bytes
Contents
name: Run tests on: [push] jobs: test: strategy: fail-fast: false matrix: os: [ubuntu-latest, macos-latest] # Due to https://github.com/actions/runner/issues/849, we have to use quotes for '3.0' ruby: [2.5, 2.6, 2.7, '3.0', head] runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v2 - uses: nanasess/setup-chromedriver@master - uses: ruby/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby }} bundler-cache: true # runs 'bundle install' and caches installed gems automatically - run: | export DISPLAY=":99" chromedriver --url-base=/wd/hub & sudo Xvfb -ac :99 -screen 0 1280x1024x24 > /dev/null 2>&1 & bundle exec rake
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
capybara-webmock-0.6.0 | .github/workflows/run-tests.yml |