turbaszek commented on a change in pull request #8222: github action tests URL: https://github.com/apache/airflow/pull/8222#discussion_r406426382
########## File path: .github/workflows/ci-k8s.yml ########## @@ -0,0 +1,47 @@ +name: "Create cluster using KinD" +on: [pull_request, push] + +jobs: + create-airflow-dockerfile: + runs-on: ubuntu-latest + strategy: + matrix: + k8s-version: [v1.15.7, v1.16.4, v1.17.2, v1.18.0] + steps: + - uses: actions/checkout@v2 + name: checkout + - name: Create k8s Kind Cluster + uses: helm/[email protected] + with: + cluster_name: kind + node_image: kindest/node:${{ matrix.k8s-version }} +# config: ./kind-cluster-conf.yaml + - name: Test cluster running Review comment: ```suggestion - name: test cluster running ``` consistency :) ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services
