Skip to content

Merge pull request #4 from wdm0006/merton-share #23

Merge pull request #4 from wdm0006/merton-share

Merge pull request #4 from wdm0006/merton-share #23

Workflow file for this run

name: Run Tests
on:
pull_request:
push:
branches: [main, master]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.8', '3.9', '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 uv
run: |
curl -LsSf https://astral.sh/uv/install.sh | sh
echo "$HOME/.cargo/bin" >> $GITHUB_PATH
- name: Create virtual environment
run: |
uv venv
- name: Install dependencies
run: |
uv pip install -e ".[dev]"
- name: Run tests with pytest
run: |
uv run pytest tests --cov=keeks --cov-report=term-missing