Skip to content

Commit

Permalink
Merge pull request #157 from coord-e/mysql-8.0
Browse files Browse the repository at this point in the history
Use mysql:8.0 in CI
  • Loading branch information
coord-e authored Feb 14, 2024
2 parents d634cc5 + c7dd8f6 commit f41c744
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
name: Run test with Ruby ${{ matrix.ruby }}
services:
mysql:
image: mysql:5.7
image: mysql:8.0
env:
MYSQL_ROOT_PASSWORD: kuroko2_root
MYSQL_USER: kuroko2
Expand Down
2 changes: 1 addition & 1 deletion spec/requests/api/job_definitions_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@
expect(result['name']).to eq(params[:name])
expect(result['description']).to eq(params[:description])
expect(result['script']).to eq(params[:script])
expect(result['cron']).to eq(params[:cron])
expect(result['cron']).to match_array(params[:cron])
end

context 'an invalid schedule' do
Expand Down

0 comments on commit f41c744

Please sign in to comment.