Skip to content

Commit

Permalink
Run tests using appraisal
Browse files Browse the repository at this point in the history
Signed-off-by: Jordan Hollinger <[email protected]>
  • Loading branch information
jhollinger committed May 21, 2024
1 parent 6a0730b commit 0ebff74
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
ruby: ['3.0', '3.1', '3.2', '3.3']
ruby: ["3.0", "3.1", "3.2", "3.3"]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
Expand All @@ -21,6 +21,8 @@ jobs:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Installing dependencies
run: bundle check --path=vendor/bundle || bundle install --path=vendor/bundle
run: |
bundle check --path=vendor/bundle || bundle install --path=vendor/bundle
bundle exec appraisal install --path=vendor/bundle
- name: Run tests
run: bundle exec rake test
run: bundle exec appraisal rake test

0 comments on commit 0ebff74

Please sign in to comment.