Skip to content

Commit

Permalink
Try again
Browse files Browse the repository at this point in the history
  • Loading branch information
rickychilcott committed Jul 18, 2024
1 parent 1b05f6c commit 923c428
Showing 1 changed file with 13 additions and 8 deletions.
21 changes: 13 additions & 8 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ jobs:
runs-on: ubuntu-latest

services:
postgresql:
image: postgres:latest
postgres:
image: postgres
ports:
- 5432:5432
options: >-
Expand All @@ -17,12 +17,12 @@ jobs:
--health-timeout 5s
--health-retries 5
env:
POSTGRES_DB: test
POSTGRES_USER: postgres
POSTGRES_PASSWORD: ""
POSTGRES_DB: thredded_gem_test
POSTGRES_USER: thredded
POSTGRES_PASSWORD: thredded

mysql:
image: mysql:latest
image: mysql
ports:
- 3306:3306
options: >-
Expand All @@ -31,7 +31,10 @@ jobs:
--health-timeout 5s
--health-retries 3
env:
MYSQL_ROOT_PASSWORD: ""
MYSQL_DATABASE: thredded_gem_test
MYSQL_USER: thredded
MYSQL_PASSWORD: thredded
MYSQL_ROOT_PASSWORD: thredded

strategy:
fail-fast: false
Expand All @@ -47,7 +50,7 @@ jobs:
# - spec/gemfiles/rails_main.gemfile
# - spec/gemfiles/rubocop.gemfile
# - spec/gemfiles/i18n-tasks.gemfile
# db: [sqlite3, postgresql, mysql2]
# db: [sqlite3, postgres, mysql]
db: [sqlite3]
# include:
# - ruby: 2.7
Expand All @@ -62,6 +65,8 @@ jobs:
COVERAGE: 1
FERRUM_DEFAULT_TIMEOUT: 20
BUNDLE_GEMFILE: ${{ matrix.gemfile }}
DB_USERNAME: thredded
DB_PASSWORD: thredded
steps:
- uses: actions/checkout@v4

Expand Down

0 comments on commit 923c428

Please sign in to comment.