WeCom Bot MCP Server

by loonghao
Verified
MIT License
18
  • Linux
  • Apple
name: Codecov on: pull_request: branches: [ main ] jobs: codecov: name: Code Coverage runs-on: ubuntu-latest strategy: matrix: python-version: ['3.10'] steps: - uses: actions/checkout@v4 with: fetch-depth: 0 - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} cache: 'pip' cache-dependency-path: '**/pyproject.toml' - name: Install dependencies run: | python -m pip install --upgrade pip pip install uv # - name: Cache nox environments uses: actions/cache@v4 with: path: .nox key: ${{ runner.os }}-nox-${{ matrix.python-version }}-${{ hashFiles('**/noxfile.py') }} restore-keys: | ${{ runner.os }}-nox-${{ matrix.python-version }}- - name: Install project run: | uv pip install --system -e . - name: Run tests run: | uvx nox -s pytest - name: Upload coverage reports to Codecov uses: codecov/codecov-action@v5 with: token: ${{ secrets.CODECOV_TOKEN }} slug: loonghao/wecom-bot-mcp-server fail_ci_if_error: false verbose: true