Skip to content

Commit 5583f60

Browse files
committed
Add comprehensive MySQL test workflow with 6 tests including CRUD operations
1 parent 05980c9 commit 5583f60

File tree

2 files changed

+399
-1
lines changed

2 files changed

+399
-1
lines changed

.github/workflows/test-all-packages.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,13 +36,17 @@ jobs:
3636
test-mongodb:
3737
uses: ./.github/workflows/test-mongodb.yml
3838

39+
# Test mysql
40+
test-mysql:
41+
uses: ./.github/workflows/test-mysql.yml
42+
3943
# Add more packages here:
4044
# test-redis:
4145
# uses: ./.github/workflows/test-redis.yml
4246

4347
# Summary job that runs after all tests
4448
summary:
45-
needs: [test-nginx, test-envoy, test-kafka, test-memcached, test-mongodb]
49+
needs: [test-nginx, test-envoy, test-kafka, test-memcached, test-mongodb, test-mysql]
4650
runs-on: ubuntu-24.04-arm
4751
if: always()
4852
steps:

0 commit comments

Comments
 (0)