fix CI gem version #13
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: rspec | |
on: push | |
jobs: | |
rspec: | |
runs-on: ubuntu-latest | |
services: | |
mysql: | |
image: mysql:5 | |
ports: | |
- 3306:3306 | |
env: | |
MYSQL_ALLOW_EMPTY_PASSWORD: yes | |
options: >- | |
--health-cmd "mysqladmin ping" | |
--health-interval 5s | |
--health-timeout 3s | |
strategy: | |
fail-fast: true | |
matrix: | |
ruby: ["2.7","3.0","3.1","3.2"] | |
env: | |
BUNDLE_GEMFILE: .github/Gemfile | |
MYSQL_HOST: 127.0.0.1 | |
RAILS_ENV: test | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ${{ matrix.ruby }} | |
bundler-cache: true | |
- name: Install rake | |
run: gem install rake | |
- name: Setup database | |
run: bundle exec rake db:prepare | |
- name: run rspec | |
run: bundle exec rspec |