Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit ece8c8b

Browse files
committedApr 16, 2024
💚 fix test CI
1 parent 1327ba9 commit ece8c8b

File tree

1 file changed

+11
-10
lines changed

1 file changed

+11
-10
lines changed
 

‎.github/workflows/test.yml

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -452,11 +452,11 @@ jobs:
452452
- name: Set up MySQL
453453
env:
454454
DB: ${{ matrix.db }}
455-
MYSQL_USER: ${{ secrets.MYSQL_USER }}
456-
MYSQL_PASSWORD: ${{ secrets.MYSQL_PASSWORD }}
457-
MYSQL_DATABASE: ${{ vars.MYSQL_DATABASE }}
458-
MYSQL_HOST: ${{ vars.MYSQL_HOST }}
459-
MYSQL_PORT: ${{ vars.MYSQL_PORT }}
455+
MYSQL_USER: tester
456+
MYSQL_PASSWORD: testpass
457+
MYSQL_DATABASE: test_db
458+
MYSQL_HOST: 0.0.0.0
459+
MYSQL_PORT: 3306
460460
run: |
461461
set -e
462462
while :
@@ -488,11 +488,11 @@ jobs:
488488
mysql -h127.0.0.1 -uroot -e "create user ${MYSQL_USER}@localhost identified $WITH_PLUGIN by '${MYSQL_PASSWORD}'; grant all on ${MYSQL_DATABASE}.* to ${MYSQL_USER}@localhost;"
489489
- name: Create db_credentials.json
490490
env:
491-
MYSQL_USER: ${{ secrets.MYSQL_USER }}
492-
MYSQL_PASSWORD: ${{ secrets.MYSQL_PASSWORD }}
493-
MYSQL_DATABASE: ${{ vars.MYSQL_DATABASE }}
494-
MYSQL_HOST: ${{ vars.MYSQL_HOST }}
495-
MYSQL_PORT: ${{ vars.MYSQL_PORT }}
491+
MYSQL_USER: tester
492+
MYSQL_PASSWORD: testpass
493+
MYSQL_DATABASE: test_db
494+
MYSQL_HOST: 0.0.0.0
495+
MYSQL_PORT: 3306
496496
run: |
497497
set -e
498498
jq -n \
@@ -508,6 +508,7 @@ jobs:
508508
run: tox
509509
- name: Upload coverage to Codecov
510510
uses: codecov/codecov-action@v4
511+
continue-on-error: true
511512
with:
512513
token: ${{ secrets.CODECOV_TOKEN }}
513514
slug: techouse/mysql-to-sqlite3

0 commit comments

Comments
 (0)
Please sign in to comment.