Skip to content

refactor to remove extraneous code and consolidate init() and reset()… #12

refactor to remove extraneous code and consolidate init() and reset()…

refactor to remove extraneous code and consolidate init() and reset()… #12

Workflow file for this run

name: install
on:
push:
pull_request:
jobs:
test:
name: test ${{ matrix.py }} - ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
- macos-latest
py:
- "3.11"
- "3.10"
- "3.9"
steps:
- name: Setup python for test ${{ matrix.py }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.py }}
- uses: actions/checkout@v3
- name: Upgrade pip
run: python -m pip install -U pip
- name: Install pufferlib
run: pip3 install -e .