diff --git a/.github/workflows/ci-python.yml b/.github/workflows/ci-python.yml index c610a0c..1913392 100644 --- a/.github/workflows/ci-python.yml +++ b/.github/workflows/ci-python.yml @@ -13,8 +13,6 @@ jobs: strategy: matrix: python-version: - - "3.9" - - "3.10" - "3.11" - "3.12" steps: @@ -22,7 +20,7 @@ jobs: - name: Install and check with black, pylint and pontos.version uses: greenbone/actions/lint-python@v3 with: - packages: + packages: greenbone linter: ruff python-version: ${{ matrix.python-version }} @@ -32,8 +30,6 @@ jobs: strategy: matrix: python-version: - - "3.9" - - "3.10" - "3.11" - "3.12" steps: @@ -51,8 +47,6 @@ jobs: strategy: matrix: python-version: - - "3.9" - - "3.10" - "3.11" - "3.12" steps: @@ -61,26 +55,3 @@ jobs: uses: greenbone/actions/mypy-python@v3 with: python-version: ${{ matrix.python-version }} - - codecov: - name: Upload coverage to codecov.io - needs: test - runs-on: "ubuntu-latest" - steps: - - uses: actions/checkout@v4 - - name: Install and calculate and upload coverage to codecov.io - uses: greenbone/actions/coverage-python@v3 - with: - python-version: "3.10" - - build-docs: - name: Build the documentation - runs-on: "ubuntu-latest" - steps: - - uses: actions/checkout@v4 - - name: Install python, poetry and dependencies - uses: greenbone/actions/poetry@v3 - with: - python-version: "3.10" - - name: Build docs - run: cd docs && poetry run make html diff --git a/.github/workflows/deploy-pypi.yml b/.github/workflows/deploy-pypi.yml index c2de05c..55b5271 100644 --- a/.github/workflows/deploy-pypi.yml +++ b/.github/workflows/deploy-pypi.yml @@ -14,7 +14,7 @@ jobs: environment: # requires to create a GitHub environment named pypi name: pypi - url: https://pypi.org/project/example/ # FIXME + url: https://pypi.org/project/greenbone-scap-api/ steps: - name: Build and publish to PyPI uses: greenbone/actions/pypi-upload@v3 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 727e7ab..b2e1d0d 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -9,7 +9,6 @@ on: type: choice description: What kind of release do you want to do? options: - - calendar - patch - minor - major