Skip to content

Commit

Permalink
Merge branch 'github:main' into support_rails_6_and_7
Browse files Browse the repository at this point in the history
  • Loading branch information
lorint committed Jan 12, 2023
2 parents c54f95b + a17f0ad commit 946b401
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,15 @@ jobs:
DB_HOST: 127.0.0.1
DB_PORT: 3306
steps:
- uses: actions/checkout@755da8c3cf115ac066823e79a1e1788f8940201b
- uses: actions/checkout@v3
- name: Cache .gem files
uses: actions/cache@v3
with:
key: gems-${{ matrix.rails_version }}-${{ hashFiles('Gemfile', '*.gemspec') }}
path: vendor/cache
- name: Start mysql
run: docker run -d --rm --name=mysql -e MYSQL_ALLOW_EMPTY_PASSWORD=1 -p 3306:3306 --health-interval=1s --health-timeout=5s --health-retries=5 --volume="$(pwd)"/script/setup.sql:/docker-entrypoint-initdb.d/setup.sql --health-cmd='mysql trilogy_test -e "select * from posts"' mysql:5.7 --sql_mode=NO_ENGINE_SUBSTITUTION --log-bin --server-id=1 --gtid-mode=ON --enforce-gtid-consistency=ON
- uses: ruby/setup-ruby@ee2113536afb7f793eed4ce60e8d3b26db912da4
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby_version }}
bundler-cache: true
Expand Down

0 comments on commit 946b401

Please sign in to comment.