@@ -725,11 +725,13 @@ jobs:
725
725
run : |
726
726
ccache.exe --show-stats -vv
727
727
728
+ - name : TinyORM add on the $env:Path
729
+ run : |
730
+ $env:TinyORMBuildTree >> $env:GITHUB_PATH
731
+
728
732
- name : Create and Seed tables for unit tests 🎉
729
733
working-directory : ${{ env.TinyORMBuildTree }}/tests/testdata_tom
730
734
run : >-
731
- $env:Path = '..\..;' + $env:Path
732
-
733
735
.\tom_testdata.exe migrate
734
736
--database=tinyorm_testdata_tom_mysql,tinyorm_testdata_tom_postgres,tinyorm_testdata_tom_sqlite
735
737
--seed --no-ansi
@@ -784,8 +786,6 @@ jobs:
784
786
- name : Tom example test some commands (MySQL) 🚀
785
787
working-directory : ${{ env.TinyORMBuildTree }}/examples/tom
786
788
run : |
787
- $env:Path = '..\..;' + $env:Path
788
-
789
789
.\tom.exe migrate:fresh --database=tinyorm_tom_mysql --no-ansi
790
790
.\tom.exe migrate:uninstall --reset --database=tinyorm_tom_mysql --no-ansi
791
791
.\tom.exe migrate:install --database=tinyorm_tom_mysql --no-ansi
@@ -810,8 +810,6 @@ jobs:
810
810
- name : Tom example test some commands (PostgreSQL) 🙌
811
811
working-directory : ${{ env.TinyORMBuildTree }}/examples/tom
812
812
run : |
813
- $env:Path = '..\..;' + $env:Path
814
-
815
813
.\tom.exe migrate:fresh --database=tinyorm_tom_postgres --no-ansi
816
814
.\tom.exe migrate:uninstall --reset --database=tinyorm_tom_postgres --no-ansi
817
815
.\tom.exe migrate:install --database=tinyorm_tom_postgres --no-ansi
@@ -833,8 +831,6 @@ jobs:
833
831
- name : Tom example test some commands (SQLite) 🏁
834
832
working-directory : ${{ env.TinyORMBuildTree }}/examples/tom
835
833
run : |
836
- $env:Path = '..\..;' + $env:Path
837
-
838
834
.\tom.exe migrate:fresh --database=tinyorm_tom_sqlite --no-ansi
839
835
.\tom.exe migrate:uninstall --reset --database=tinyorm_tom_sqlite --no-ansi
840
836
.\tom.exe migrate:install --database=tinyorm_tom_sqlite --no-ansi
0 commit comments