Skip to content

Commit 1e99f39

Browse files
authored
Update ci.yml
1 parent cbac418 commit 1e99f39

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,17 +40,17 @@ jobs:
4040

4141
- name: 🔢 Check /start command output
4242
run: |
43-
docker-compose exec bot php -r "require 'vendor/autoload.php'; echo (new ShabatBot\\App\\Locales\\Lang(null))->t('StartCommand', 123456);"
43+
docker-compose exec bot php -r "require 'vendor/autoload.php'; echo (new JewishPulse\\App\\Locales\\Lang(null))->t('StartCommand', 123456);"
4444
4545
- name: 🌇 Test Shabbat time formatting
4646
run: |
47-
docker-compose exec bot php -r "require 'vendor/autoload.php'; echo (new ShabatBot\\App\\Handlers\\ShabatTimes())->parseShabatData();"
47+
docker-compose exec bot php -r "require 'vendor/autoload.php'; echo (new JewishPulse\\App\\Handlers\\ShabatTimes())->parseShabatData();"
4848
4949
- name: 🌎 Check locale translation completeness
5050
run: |
5151
docker-compose exec bot php -r "
5252
\$files = glob('app/locales/*.json');
53-
\$keys = array_keys(json_decode(file_get_contents('app/locales/he.json'), true));
53+
\$keys = array_keys(json_decode(file_get_contents('src/locales/he.json'), true));
5454
foreach (\$files as \$file) {
5555
\$t = json_decode(file_get_contents(\$file), true);
5656
\$missing = array_diff(\$keys, array_keys(\$t));

0 commit comments

Comments
 (0)