Skip to content

Refactor Normalization Fn #3

Refactor Normalization Fn

Refactor Normalization Fn #3

Workflow file for this run

name: pytest-pull
on:
pull_request:
branches: [main]
concurrency:
group: gh-${{ github.ref }}-pytest
cancel-in-progress: true
jobs:
pytest-pull:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.10"
- name: Install
run: |
pip install .[dev]
pip list
- name: Run pytest
run: pytest