Sha256: 57b69f4296b7e0cc6be5c2f707753d67007caf8b1622c7c92803e9e7ce6e718d
Contents?: true
Size: 981 Bytes
Versions: 1
Compression:
Stored size: 981 Bytes
Contents
name: MySql on: [pull_request] jobs: Test-With-Mysql: runs-on: ubuntu-latest strategy: fail-fast: false matrix: active_record: [6.1.7.2, 6.0.6, 5.2.8.1] ruby: [2.6, 2.7, '3.0', 3.1, 3.2] exclude: - active_record: 5.2.8.1 ruby: '3.0' - active_record: 5.2.8.1 ruby: 3.1 - active_record: 5.2.8.1 ruby: 3.2 env: ACTIVE_RECORD_VERSION: ${{ matrix.active_record }} DATABASE_ADAPTER: mysql INSTALL_MYSQL_GEM: true RAILS_ENV: test steps: - name: Check out repository code uses: actions/checkout@v2 - name: Start mysql run: sudo service mysql start - name: Set up Ruby uses: ruby/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby }} bundler-cache: true # runs 'bundle install' and caches installed gems automatically - name: Run tests run: bundle exec rake test
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
activerecord-cte-0.3.0 | .github/workflows/test-with-mysql.yml |