MCP Goodnews

by VectorInstitute
Verified
name: Linting on: push: branches: - main pull_request: types: - opened - synchronize jobs: lint: runs-on: ubuntu-latest steps: - name: get code uses: actions/checkout@v4 - name: Install uv uses: astral-sh/setup-uv@v5 with: # Install a specific version of uv. version: "0.5.21" enable-cache: true - name: "Set up Python" uses: actions/setup-python@v5 with: python-version: "3.12" - name: Install the project run: uv sync --all-extras --dev - name: Run linter and formatter run: | uv run make lint