From 754d8cc5a01662a46cd00dffc619045d9e12238c Mon Sep 17 00:00:00 2001 From: CNcabbage1 <49368320+CNcabbage1@users.noreply.github.com> Date: Tue, 31 May 2022 20:24:11 +0800 Subject: [PATCH 1/3] Set up CI with Azure Pipelines [skip ci] --- environment_setup/iac-create-environment-pipeline-arm.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/environment_setup/iac-create-environment-pipeline-arm.yml b/environment_setup/iac-create-environment-pipeline-arm.yml index 0b9f474c..462be2dd 100644 --- a/environment_setup/iac-create-environment-pipeline-arm.yml +++ b/environment_setup/iac-create-environment-pipeline-arm.yml @@ -18,7 +18,7 @@ pool: vmImage: "ubuntu-latest" variables: - - group: devopsforai-aml-vg + - group: devopsforai-aml-vg-djw - name: WORKSPACE_SKU # https://docs.microsoft.com/en-us/azure/machine-learning/overview-what-is-azure-ml#sku value: basic From ea62fc959600d4e3a9df6a467abfde1e1e94e94d Mon Sep 17 00:00:00 2001 From: CNcabbage1 <49368320+CNcabbage1@users.noreply.github.com> Date: Tue, 31 May 2022 21:40:04 +0800 Subject: [PATCH 2/3] Create pylint.yml --- .github/workflows/pylint.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/workflows/pylint.yml diff --git a/.github/workflows/pylint.yml b/.github/workflows/pylint.yml new file mode 100644 index 00000000..383e65cd --- /dev/null +++ b/.github/workflows/pylint.yml @@ -0,0 +1,23 @@ +name: Pylint + +on: [push] + +jobs: + build: + runs-on: ubuntu-latest + strategy: + matrix: + python-version: ["3.8", "3.9", "3.10"] + steps: + - uses: actions/checkout@v3 + - name: Set up Python ${{ matrix.python-version }} + uses: actions/setup-python@v3 + with: + python-version: ${{ matrix.python-version }} + - name: Install dependencies + run: | + python -m pip install --upgrade pip + pip install pylint + - name: Analysing the code with pylint + run: | + pylint $(git ls-files '*.py') From 4c7ad969ae1ef2d8c65e1b76bdcd783bdc0cbd8a Mon Sep 17 00:00:00 2001 From: CNcabbage1 <49368320+CNcabbage1@users.noreply.github.com> Date: Wed, 1 Jun 2022 13:33:13 +0800 Subject: [PATCH 3/3] Update diabetes_regression-ci.yml --- .pipelines/diabetes_regression-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.pipelines/diabetes_regression-ci.yml b/.pipelines/diabetes_regression-ci.yml index 5a539af0..6d8b8feb 100644 --- a/.pipelines/diabetes_regression-ci.yml +++ b/.pipelines/diabetes_regression-ci.yml @@ -19,7 +19,7 @@ trigger: variables: - template: diabetes_regression-variables-template.yml -- group: devopsforai-aml-vg +- group: devopsforai-aml-vg-djw pool: vmImage: ubuntu-latest