Skip to content

Refactor

Refactor #1

Workflow file for this run

name: Test
on:
push:
branches:
- main
pull_request:
paths-ignore:
- "**.md"
- "**.rst"
jobs:
tests:
runs-on: ubuntu-latest
steps:
- name: Checkout source
uses: actions/checkout@v3
- name: Set up python
uses: actions/setup-python@v4
with:
python-version: "3.10"
cache: "pip"
cache-dependency-path: "pyproject.toml"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install pytest
- name: Install umetrics
run: |
pip install -e .
- name: Run tests
run: |
pytest