Skip to content

fix: include cstdio to solve stderr not declared #27

fix: include cstdio to solve stderr not declared

fix: include cstdio to solve stderr not declared #27

Workflow file for this run

name: tests
on: [push, pull_request]
jobs:
run-tests:
strategy:
fail-fast: false
matrix:
python-version: ['3.8', '3.9', '3.10']
os: ['ubuntu-latest', 'macos-latest']
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pip install -e .[dev]
- name: Run tests
run: |
# run all tests
make test