diff options
author | Jiri Suchan <yed@vanyli.net> | 2022-06-30 11:14:07 +0900 |
---|---|---|
committer | Jiri Suchan <yed@vanyli.net> | 2022-08-19 20:32:13 +0900 |
commit | 388d35b74d8919b251faae9e24af50476f12b1a2 (patch) | |
tree | 6e984d73605bf3de867722bd88e1ee888a351fea /.github | |
parent | b04593c22bd5e88d24f1be19422696e7bde584f6 (diff) |
ci: add basic test pipeline for shader builders
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/static_checks.yml | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/.github/workflows/static_checks.yml b/.github/workflows/static_checks.yml index d1bcd557ae..fea82791ed 100644 --- a/.github/workflows/static_checks.yml +++ b/.github/workflows/static_checks.yml @@ -27,7 +27,7 @@ jobs: sudo apt-get install -qq dos2unix recode clang-format-13 libxml2-utils sudo update-alternatives --remove-all clang-format sudo update-alternatives --install /usr/bin/clang-format clang-format /usr/bin/clang-format-13 100 - sudo pip3 install black==22.3.0 pygments + sudo pip3 install black==22.3.0 pygments pytest - name: File formatting checks (file_format.sh) run: | @@ -41,6 +41,10 @@ jobs: run: | bash ./misc/scripts/black_format.sh + - name: Python builders checks via pytest (pytest_builders.sh) + run: | + bash ./misc/scripts/pytest_builders.sh + - name: JavaScript style and documentation checks via ESLint and JSDoc run: | cd platform/javascript |