Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .github/workflows/verify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,30 +14,30 @@ jobs:
matrix:
os: [ubuntu-latest]
# Due to https://github.com/actions/runner/issues/849, we have to use quotes for '3.0'
ruby: ["3.2.6", "3.3.7", truffleruby]
ruby: ["3.3.10", "3.4.7"]
db: ["mariadb", "mysql", "pg"]
runs-on: ${{ matrix.os }}
services:
redis:
image: redis:7.4-alpine
ports:
- '6379:6379'
- "6379:6379"

postgres:
image: postgres:16
env:
POSTGRES_USER: ${{ env.DB_USERNAME }}
POSTGRES_PASSWORD: ${{ env.DB_PASSWORD }}
ports:
- '5432:5432'
- "5432:5432"

mysql:
image: bitnami/mysql:latest
env:
MYSQL_ROOT_USER: ${{ env.DB_USERNAME }}
MYSQL_ROOT_PASSWORD: ${{ env.DB_PASSWORD }}
ports:
- '3306:3306'
- "3306:3306"
options: >-
--health-cmd="mysqladmin ping"
--health-interval=10s
Expand All @@ -51,7 +51,7 @@ jobs:
MYSQL_USER: ${{ env.DB_USERNAME }}
MYSQL_PASSWORD: ${{ env.DB_PASSWORD }}
ports:
- '3307:3306'
- "3307:3306"

steps:
- uses: actions/checkout@v4
Expand All @@ -78,7 +78,7 @@ jobs:
bin/test

- name: Upload coverage
if: ${{ matrix.db == 'pg' && matrix.ruby == '3.2.6' }}
if: ${{ matrix.db == 'pg' && matrix.ruby == '3.4.7' }}
uses: actions/upload-artifact@v4
with:
name: review.txt
Expand Down
Loading