Add Python 3.11 to the CI matrix (#864) #903
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "Operator" | |
on: | |
pull_request: | |
paths: | |
- ".github/workflows/operator.yaml" | |
- "requirements*" | |
- "ci/**" | |
- "dask_kubernetes/operator/**" | |
- "dask_kubernetes/common/**" | |
- "dask_kubernetes/*" | |
push: | |
paths: | |
- ".github/workflows/operator.yaml" | |
- "requirements*" | |
- "ci/**" | |
- "dask_kubernetes/operator/**" | |
- "dask_kubernetes/common/**" | |
- "dask_kubernetes/*" | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
lint-chart: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Lint Helm Chart | |
run: helm lint dask_kubernetes/operator/deployment/helm/dask-kubernetes-operator | |
- name: Install Pluto | |
uses: FairwindsOps/pluto/[email protected] | |
- name: Check for deprecated APIs | |
run: helm template --include-crds dask-operator dask_kubernetes/operator/deployment/helm/dask-kubernetes-operator | pluto detect - | |
test: | |
runs-on: ubuntu-latest | |
timeout-minutes: 30 | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: ["3.9", "3.10", "3.11"] | |
kubernetes-version: ["1.29.2"] | |
include: | |
- python-version: '3.10' | |
kubernetes-version: 1.28.7 | |
- python-version: '3.10' | |
kubernetes-version: 1.27.11 | |
- python-version: '3.10' | |
kubernetes-version: 1.26.14 | |
env: | |
KUBECONFIG: .pytest-kind/pytest-kind/kubeconfig | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install deps | |
run: ./ci/install-deps.sh | |
- name: Run tests | |
env: | |
KUBERNETES_VERSION: ${{ matrix.kubernetes-version }} | |
TEST_ISTIO: "true" | |
TEST_DASK_GATEWAY: "true" | |
run: pytest --maxfail=3 --reruns=5 dask_kubernetes/common dask_kubernetes/operator | |
- name: Debug kubernetes resources | |
if: always() | |
run: kubectl get all -A |