Allow IDN #39
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: Run tests | |
on: | |
pull_request: | |
push: | |
branches: | |
- '**' | |
tags-ignore: | |
- 'v*' | |
jobs: | |
test: | |
name: "Run tests" | |
if: "! contains(toJSON(github.event.commits.latest.message), '[skip ci]')" | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
# - ruby: 3.0 # Not working due to nokogiri | |
- ruby: 2.7 | |
- ruby: 2.6 | |
- ruby: 2.5 | |
# - ruby: 2.4 # Not working due to nokogiri | |
# - ruby: 2.3 # Not working due to nokogiri | |
container: | |
image: ruby:${{ matrix.ruby }} | |
env: | |
CI: true | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/cache@v2 | |
with: | |
path: vendor/bundle | |
key: bundle-${{ matrix.ruby }}-${{ hashFiles('**/*.gemspec') }}-${{ hashFiles('**/Gemfile') }} | |
restore-keys: | | |
bundle-${{ matrix.ruby }}-${{ hashFiles('**/*.gemspec') }}-${{ hashFiles('**/Gemfile') }} | |
bundle-${{ matrix.ruby }}- | |
- name: Install Bundler version from Gemfile | |
run: gem install bundler -v $(grep -A 1 "BUNDLED WITH" Gemfile.lock | tail -n 1) | |
- name: Bundle install | |
run: | | |
bundle config path vendor/bundle | |
bundle install | |
- name: Run RSpec | |
run: bundle exec rspec |