Skip to content

fix: use mmap to allocate memory instead of the string buffer hackiness #27

fix: use mmap to allocate memory instead of the string buffer hackiness

fix: use mmap to allocate memory instead of the string buffer hackiness #27

Workflow file for this run

name: CI
on:
push:
branches: [main]
paths:
- ".github/**"
- "intercepts/**"
- "tests/**"
- "pyproject.toml"
- "requirements.txt"
pull_request:
branches: [main]
paths:
- ".github/**"
- "intercepts/**"
- "tests/**"
- "pyproject.toml"
- "requirements.txt"
workflow_dispatch:
jobs:
tests:
strategy:
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
os: [ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install Intercepts
shell: bash
run: |
python -m pip install --upgrade pip
python -m pip install .[test]
- name: Run Test Suite
shell: bash
run: |
coverage run
coverage combine
coverage xml
- name: Upload Coverage to Codecov
uses: codecov/codecov-action@v3