Sha256: cdca86cc292f4288a2b67d01e99db2154f39611866a78a75197133abbce725f3
Contents?: true
Size: 1.99 KB
Versions: 1
Compression:
Stored size: 1.99 KB
Contents
name: spec on: [push, pull_request] jobs: build: runs-on: ubuntu-latest continue-on-error: ${{ matrix.ruby == 'head' }} env: DB: ${{ matrix.db }} BUNDLE_GEMFILE: ${{ matrix.gemfile }} strategy: fail-fast: false matrix: ruby: - 3.2 - 3.1 - "3.0" - 2.7 gemfile: - gemfiles/activerecord_7.1.gemfile - gemfiles/activerecord_7.0.gemfile - gemfiles/activerecord_6.1.gemfile db: - mysql - postgresql - sqlite3 include: - ruby: truffleruby-head db: postgresql gemfile: gemfiles/activerecord_6.1.gemfile - ruby: truffleruby-head db: postgresql gemfile: gemfiles/activerecord_7.0.gemfile exclude: - ruby: 3.2 gemfile: gemfiles/activerecord_6.0.gemfile services: postgres: image: postgres:10 env: POSTGRES_USER: postgres POSTGRES_DB: acts_as_taggable_on POSTGRES_PASSWORD: postgres ports: ['5432:5432'] options: >- --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5 mysql: image: mysql:8 env: MYSQL_ALLOW_EMPTY_PASSWORD: true ports: ['3306:3306'] options: >- --health-cmd "mysqladmin ping" --health-interval 10s --health-timeout 5s --health-retries 5 steps: - uses: actions/checkout@v4 - name: Set up Ruby uses: ruby/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby }} bundler-cache: true - name: Create MySQL test database with utf8mb4 charset if: ${{ matrix.db == 'mysql' }} run: | mysql -uroot --host=127.0.0.1 -e "CREATE DATABASE acts_as_taggable_on CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci" - name: Build and test with Rake run: | bundle exec rake
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
acts-as-taggable-on-10.0.0 | .github/workflows/spec.yml |