chore(deps): update dependency sqlite3 to v2.5.0 #261
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: Test | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
workflow_dispatch: | |
jobs: | |
test: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
ruby_version: ["2.7", "3.0", "3.1", "3.2", "3.3"] | |
os: ["ubuntu-latest","windows-latest","macos-latest"] | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ${{ matrix.ruby_version }} | |
bundler-cache: true | |
- run: "bundle exec rake" | |
- run: "bundle install && bundle exec rake spec" | |
if: matrix.ruby_version > '3.0' | |
working-directory: example/zoo-app | |
- run: "bundle install && bundle exec rake pact:verify" | |
if: matrix.os != 'windows-latest' && matrix.ruby_version > '3.0' | |
working-directory: example/animal-service | |
test-with-rack-2: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
ruby_version: ["3.2"] | |
os: ["ubuntu-latest","windows-latest","macos-latest"] | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ${{ matrix.ruby_version }} | |
bundler-cache: true | |
- run: "bundle exec appraisal install" | |
- run: "bundle exec appraisal rack-2 rake" | |
test-with-active-support: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
ruby_version: ["2.7", "3.0", "3.1", "3.2"] | |
os: ["ubuntu-latest","windows-latest","macos-latest"] | |
defaults: | |
run: | |
shell: bash | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ${{ matrix.ruby_version }} | |
bundler-cache: true | |
- run: "bundle exec appraisal install" | |
- run: "bundle exec appraisal activesupport rake spec_with_active_support" |