Skip to content

Commit

Permalink
Small change to CI
Browse files Browse the repository at this point in the history
  • Loading branch information
MatheusRich committed Sep 2, 2023
1 parent f71fa72 commit 5c0a342
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,13 @@ jobs:
build:
runs-on: ubuntu-latest
name: Ruby ${{ matrix.ruby }}
continue-on-error: ${{ matrix.experimental == true }}
strategy:
matrix:
ruby: [2.7, 3.0, 3.1, 3.2, "head"]
continue-on-error: ${{ matrix.ruby == 'head' }}

include:
- ruby: "head"
experimental: true
steps:
- uses: actions/checkout@v2
- name: Set up Ruby
Expand All @@ -26,6 +28,6 @@ jobs:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Run the default task
run: bundle exec rake
run: bundle exec rspec
- name: Linter
run: bundle exec standardrb

0 comments on commit 5c0a342

Please sign in to comment.