Skip to content

Ideal denosier import #7

Ideal denosier import

Ideal denosier import #7

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-20.04
strategy:
matrix:
python-version: ["3.10", "3.11",]
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 pip
run: |
python -m pip install --upgrade pip
- name: Install package and test dependencies
run: |
pip install -e .[test]
- name: Test with pytest
run: |
python -m pytest