Skip to content

Supports functions with no arguments #118

Supports functions with no arguments

Supports functions with no arguments #118

Workflow file for this run

name: Run Tests
on: [push, pull_request]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@v2
with:
submodules: recursive
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pip install pip==20.0.2
pip install -r requirements.txt
python setup.py bdist_wheel
pip install dist/*.whl
- name: Test with pytest
run: |
./scripts/sync-tests
./scripts/run-tests