Skip to content

Release v1.0.1

Release v1.0.1 #22

Workflow file for this run

name: CI
on:
push:
branches: [ main, develop ]
pull_request:
branches: [ main, develop ]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e ".[dev]"
- name: Run linting
run: |
ruff check src/ --config=pyproject.toml
- name: Run type checking
run: |
mypy src/amazing_marvin_mcp/
# - name: Run tests
# run: |
# pytest tests/ -v --tb=short
- name: Test package build
run: |
pip install build
python -m build