Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 22 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,36 +21,53 @@ jobs:
include:
- ruby-version: 1.9.3-p551
bundler-version: 1.17.3
run-linter: false

- ruby-version: 2.0.0-p648
bundler-version: 1.17.3
run-linter: false

- ruby-version: 2.1.10
bundler-version: 1.17.3
run-linter: false

- ruby-version: 2.2.10
bundler-version: 1.17.3
run-linter: false

- ruby-version: 2.3.8
bundler-version: 2.2.32
run-linter: false

- ruby-version: 2.4.10
bundler-version: 2.2.32
run-linter: false

- ruby-version: 2.5.8
bundler-version: 2.2.32
run-linter: true

- ruby-version: 2.6.6
bundler-version: 2.2.32
run-linter: true

- ruby-version: 3.0.0
bundler-version: 2.2.32
run-linter: true

container: ruby:${{ matrix.ruby-version }}

steps:
- uses: actions/checkout@v2
- run: |
gem install bundler -v ${{ matrix.bundler-version }}
bundle install
bundle exec rake
- uses: actions/checkout@v2

- name: Install Bundler and gems
run: |
gem install bundler -v ${{ matrix.bundler-version }}
bundle install

- name: Linting
if: ${{ matrix.run-linter }}
run: bundle exec standardrb

- name: Unit Tests
run: bundle exec rake
Loading