Skip to content

Commit

Permalink
added test workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Eduardo Leao authored and Eduardo Leao committed Mar 20, 2024
1 parent a0d17e5 commit 8c82c8c
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# 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

0 comments on commit 8c82c8c

Please sign in to comment.