Update README.md #4
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: Execute tests # execute tests in tests/ | |
run: | | |
node tests/test.js |