Skip to content

Added support for compiling functions inline #176

Added support for compiling functions inline

Added support for compiling functions inline #176

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
ci:
runs-on: ubuntu-20.04
strategy:
matrix:
python-version: [3.9, 3.11]
steps:
- name: Setting up environment
uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- run: |
python -m pip install --upgrade pip
pip install -r dev-requirements.txt
- name: Checking code style
run: |
black . --check --diff
- name: Running tests
run: |
pytest --verbosity=3