Skip to content

Commit

Permalink
use localhost ip
Browse files Browse the repository at this point in the history
  • Loading branch information
ezekg committed Aug 9, 2024
1 parent 205258b commit d90011c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,10 +57,10 @@ jobs:
echo "DATABASE_URL=postgres://postgres:postgres@localhost/test" >> $GITHUB_ENV
;;
mysql)
echo "DATABASE_URL=mysql2://root:root@localhost/test" >> $GITHUB_ENV
echo "DATABASE_URL=mysql2://root:root@127.0.0.1/test" >> $GITHUB_ENV
;;
mariadb)
echo "DATABASE_URL=mysql2://root:root@localhost:3307/test" >> $GITHUB_ENV
echo "DATABASE_URL=mysql2://root:root@127.0.0.1:3307/test" >> $GITHUB_ENV
;;
esac
- name: Test
Expand Down

0 comments on commit d90011c

Please sign in to comment.