Skip to content

fix: Adjust pyproject.toml dependencies to PEP 621 format #3

fix: Adjust pyproject.toml dependencies to PEP 621 format

fix: Adjust pyproject.toml dependencies to PEP 621 format #3

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.x'
- name: Install uv
run: pip install uv
- name: Create virtual environment
run: uv venv
- name: Install dependencies
run: uv pip install .
- name: Run tests
run: |
# Add your test command here, e.g., pytest
echo "No tests configured yet. Add your test command here."
release-please:
needs: build-and-test
runs-on: ubuntu-latest
permissions:
contents: write
pull-requests: write
issues: write
steps:
- uses: googleapis/release-please-action@v4
with:
release-type: python
package-name: monitoring-kubernetes