Skip to content

remove extra method #33

remove extra method

remove extra method #33

Workflow file for this run

name: CI Python
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
tests-cpu:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest]
python-version: [3.8, 3.9]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Create venv
run: python3 -m venv venv
- name: Install dependencies
run: venv/bin/python -m pip install -e .[dev]
- name: Run Tests
run: venv/bin/pytest -v test/