Update README.md #168
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
# This workflow deploys the current model to PyPI after a new release is created on GitHub. | |
name: Test JS-Torch | |
on: | |
push: | |
branches: | |
- main | |
workflow_dispatch: | |
jobs: | |
test: | |
name: Test framework # instantiate testing job | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 # checkout the repo | |
- name: Download dependencies # execute tests in tests/ | |
run: | | |
npm install | |
- name: Execute tests # execute tests in tests/ | |
run: | | |
npm run test |