Skip to content

Commit

Permalink
enable mysql service
Browse files Browse the repository at this point in the history
  • Loading branch information
msimerson committed Feb 18, 2024
1 parent a6d0f3d commit 9848dd2
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 @@ -29,7 +29,7 @@ jobs:
steps:
- name: Start MySQL
run: |
sudo service mysql start
sudo /etc/init.d/mysql start
mysql -e 'CREATE DATABASE nictool;' -u${{ env.DB_USER }} -p${{ env.DB_PASS }}
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
Expand Down
2 changes: 1 addition & 1 deletion conf.d/mysql.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

default:
host: localhost
host: 127.0.0.1
port: 3306
user: nictool
database: nictool
Expand Down

0 comments on commit 9848dd2

Please sign in to comment.