Skip to content

This is the beginning of a program that is intended to provide test c… #7

This is the beginning of a program that is intended to provide test c…

This is the beginning of a program that is intended to provide test c… #7

Workflow file for this run

name: Test
on:
push:
branches: [ testsuite ]
pull_request:
branches: [ main ]
jobs:
test_js:
name: test logics-js
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
- run: cd logics-js && npm install --save-dev && npm test
test_py:
name: test logics-py
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: '3.11'
- name: Install pipenv
run: pip install pipenv
- name: Run Testsuite
run: cd logics-py && pipenv install --dev && pipenv run pytest -vvv