Added support for compiling functions inline #176
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |