Sha256: b5fc82b1ef1252a5ac8f818921f9e1491c277c43d62059bb4bf7da6753e98615
Contents?: true
Size: 1.18 KB
Versions: 2
Compression:
Stored size: 1.18 KB
Contents
name: Test on: [push, pull_request] jobs: test: strategy: fail-fast: false matrix: ruby: - 2.5 - 2.6 - 2.7 rails: - 5.2.0 - 6.0.0 - 6.1.0 include: - ruby: 2.4 rails: 5.2.0 - ruby: 2.7 rails: 7.0.1 - ruby: 3.0 rails: 6.1.0 env: PERCONA_DB_USER: root PERCONA_DB_PASSWORD: root RAILS_VERSION: "~> ${{ matrix.rails }}" runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - uses: ruby/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby }} bundler-cache: true - name: "Add Percona GPG key" run: sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 9334A25F8507EFA5 - name: "Add Percona APT repository" run: echo "deb http://repo.percona.com/apt `lsb_release -cs` main" | sudo tee -a /etc/apt/sources.list - run: sudo apt-get update -qq - run: sudo apt-get install percona-toolkit - name: Start MySQL server run: sudo systemctl start mysql.service - run: bin/setup - run: bundle exec rake
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
departure-6.5.0 | .github/workflows/test.yml |
departure-6.4.0 | .github/workflows/test.yml |