Multilingual Content (PoC) #148
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: SQL | |
| on: | |
| push: | |
| branches: | |
| - "6.0" | |
| - master | |
| paths: | |
| - wcfsetup/setup/db/install.sql | |
| pull_request: | |
| paths: | |
| - wcfsetup/setup/db/install.sql | |
| jobs: | |
| syntax: | |
| name: "Check install.sql" | |
| runs-on: ubuntu-latest | |
| steps: | |
| - run: sudo service mysql start | |
| - run: mysqladmin -uroot -proot create test | |
| - uses: actions/checkout@v4 | |
| - run: | | |
| cat wcfsetup/setup/db/install.sql |mysql -uroot -proot -Dtest |