actually runs the static jobs
This commit is contained in:
parent
1a51bc44a5
commit
df41ac0d3a
1 changed files with 16 additions and 0 deletions
16
.github/workflows/bats.yml
vendored
16
.github/workflows/bats.yml
vendored
|
@ -26,6 +26,9 @@ jobs:
|
||||||
sqlite:
|
sqlite:
|
||||||
uses: ./.github/workflows/bats-sqlite-coverage.yml
|
uses: ./.github/workflows/bats-sqlite-coverage.yml
|
||||||
|
|
||||||
|
sqlite-static:
|
||||||
|
uses: ./.github/workflows/bats-sqlite-coverage-static.yml
|
||||||
|
|
||||||
# Jobs for Postgres (and sometimes MySQL) can have failing tests on GitHub
|
# Jobs for Postgres (and sometimes MySQL) can have failing tests on GitHub
|
||||||
# CI, but they pass when run on devs' machines or in the release checks. We
|
# CI, but they pass when run on devs' machines or in the release checks. We
|
||||||
# disable them here by default. Remove the if..false to enable them.
|
# disable them here by default. Remove the if..false to enable them.
|
||||||
|
@ -35,14 +38,27 @@ jobs:
|
||||||
with:
|
with:
|
||||||
database_image: mariadb:latest
|
database_image: mariadb:latest
|
||||||
|
|
||||||
|
mariadb-static:
|
||||||
|
uses: ./.github/workflows/bats-mysql-static.yml
|
||||||
|
with:
|
||||||
|
database_image: mariadb:latest
|
||||||
|
|
||||||
mysql:
|
mysql:
|
||||||
uses: ./.github/workflows/bats-mysql.yml
|
uses: ./.github/workflows/bats-mysql.yml
|
||||||
with:
|
with:
|
||||||
database_image: mysql:latest
|
database_image: mysql:latest
|
||||||
|
|
||||||
|
mysql-static:
|
||||||
|
uses: ./.github/workflows/bats-mysql-static.yml
|
||||||
|
with:
|
||||||
|
database_image: mysql:latest
|
||||||
|
|
||||||
postgres:
|
postgres:
|
||||||
uses: ./.github/workflows/bats-postgres.yml
|
uses: ./.github/workflows/bats-postgres.yml
|
||||||
|
|
||||||
|
postgres-static:
|
||||||
|
uses: ./.github/workflows/bats-postgres-static.yml
|
||||||
|
|
||||||
hub:
|
hub:
|
||||||
uses: ./.github/workflows/bats-hub.yml
|
uses: ./.github/workflows/bats-hub.yml
|
||||||
secrets:
|
secrets:
|
||||||
|
|
Loading…
Reference in a new issue