Skip to content

chore: replaced sig with noise_level for readability #45

chore: replaced sig with noise_level for readability

chore: replaced sig with noise_level for readability #45

Workflow file for this run

# based on https://simonwillison.net/2021/Nov/4/publish-open-source-python-library/
name: test
on: [push]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- uses: actions/cache@v3
name: Configure pip caching
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/pyproject.toml','**/requirements/core.txt', '**/requirements/test.txt') }}
restore-keys: |
${{ runner.os }}-pip-
- name: Install dependencies
run: |
make install-gh-test
- name: Run tests
run: |
pytest -v