Adding mcore_t5
and transformer_engine
to config, set to False
#722
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: launcher | |
on: | |
pull_request: | |
branches: | |
- 'main' | |
jobs: | |
unit_tests: | |
runs-on: ubuntu-latest | |
env: | |
working-directory: ./launcher_scripts | |
steps: | |
- name: checkout the repo | |
uses: actions/checkout@v3 | |
- name: install dependencies | |
run: | | |
python -m pip install pytest requests-mock -r requirements.txt | |
- name: run unit tests | |
run: PYTHONPATH=$PWD pytest | |
working-directory: ${{env.working-directory}} |