Skip to content

logics-py==0.0.11, code reformat, minor fixes #8

logics-py==0.0.11, code reformat, minor fixes

logics-py==0.0.11, code reformat, minor fixes #8

Workflow file for this run

name: Test
on:
push:
branches: [ main ]
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