More rubocop #26
Workflow file for this run
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] | |
jobs: | |
runTests: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
ruby-version: [3.2.3] | |
rails-version: [61] | |
include: | |
- ruby-version: 3.3.0 | |
rails-version: 70 | |
env: | |
BUNDLE_GEMFILE: ${{ github.workspace }}/gemfiles/rails_${{ matrix.rails-version }}.gemfile | |
BUNDLE_WITHOUT: lint | |
# we do not care about mysql, but it should be fine | |
TEST_ADAPTERS: "sqlite3 postgres" | |
services: | |
postgres: | |
image: postgres:12-alpine | |
env: | |
POSTGRES_USER: postgres | |
POSTGRES_PASSWORD: "" | |
POSTGRES_DB: seamless_database_pool_test | |
POSTGRES_HOST_AUTH_METHOD: trust | |
ports: | |
- 5432:5432 | |
steps: | |
- uses: actions/checkout@master | |
- name: Install ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ${{ matrix.ruby-version }} | |
bundler-cache: true | |
- name: Run tests | |
run: | | |
echo Running with $BUNDLE_GEMFILE | |
bundle exec rspec |