Bump activerecord from 7.1.4 to 7.2.1.1 (#308) #818
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: Tests | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
jobs: | |
test: | |
strategy: | |
fail-fast: false | |
matrix: | |
ruby: | |
- "3.1" | |
- "3.2" | |
- "3.3" | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ${{ matrix.ruby }} | |
bundler-cache: true | |
- uses: harmon758/postgresql-action@v1 | |
with: | |
postgresql version: 15 | |
postgresql db: grape_boilerplate_test | |
postgresql user: test | |
postgresql password: password | |
- name: Run tests | |
run: | | |
bundle exec rake db:setup | |
bundle exec rake spec | |
env: | |
DATABASE_URL: postgres://test:password@127.0.0.1:5432/grape_boilerplate_test | |
RACK_ENV: test | |
- name: Updload code coverage results | |
if: matrix.ruby == 3.3 | |
uses: codecov/codecov-action@v4 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} |