diff --git a/.github/workflows/python_cd.yml b/.github/workflows/continuous_delivery.yml similarity index 94% rename from .github/workflows/python_cd.yml rename to .github/workflows/continuous_delivery.yml index 66fc7c8..5737214 100644 --- a/.github/workflows/python_cd.yml +++ b/.github/workflows/continuous_delivery.yml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ["3.12"] # Add more Python versions to test here + python-version: ["3.13"] # Add more Python versions to test here steps: - uses: actions/checkout@v4 diff --git a/.github/workflows/python_ci.yml b/.github/workflows/continuous_integration.yml similarity index 93% rename from .github/workflows/python_ci.yml rename to .github/workflows/continuous_integration.yml index ab537b7..ccd5c41 100644 --- a/.github/workflows/python_ci.yml +++ b/.github/workflows/continuous_integration.yml @@ -37,7 +37,7 @@ jobs: run: | python -m pip install --upgrade pip pip install poetry - poetry install --with dev + poetry install --with dev,docs - name: Lint with ruff run: poetry run ruff check . @@ -50,3 +50,6 @@ jobs: env: github-token: ${{ secrets.GITHUB_TOKEN }} uses: coverallsapp/github-action@v2.3.4 + + - name: Build + run: poetry run mkdocs build