From 9411c63ceee0fc05296692c8214f3aed0b58da61 Mon Sep 17 00:00:00 2001 From: samuel pelletier-evraire Date: Tue, 9 Apr 2024 15:49:23 -0400 Subject: [PATCH] issue #8: Adding new workflow --- .github/CODEOWNERS | 6 ++++++ .../workflows/python-api-test-workflows.yml | 21 +++++++++++++++++++ 2 files changed, 27 insertions(+) create mode 100644 .github/CODEOWNERS create mode 100644 .github/workflows/python-api-test-workflows.yml diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS new file mode 100644 index 00000000..c5556040 --- /dev/null +++ b/.github/CODEOWNERS @@ -0,0 +1,6 @@ +# This CODEOWNERS file is auto-generated. See the script at for modification details. + +/.github/ @ai-cfia/devops +Dockerfile @ai-cfia/devops +docker-compose.yml @ai-cfia/devops +docker-compose.*.yml @ai-cfia/devops diff --git a/.github/workflows/python-api-test-workflows.yml b/.github/workflows/python-api-test-workflows.yml new file mode 100644 index 00000000..06cc08e2 --- /dev/null +++ b/.github/workflows/python-api-test-workflows.yml @@ -0,0 +1,21 @@ +name: Python api-test workflows + +on: + pull_request: + types: + - opened + - closed + - synchronize + +jobs: + markdown-check: + uses: ai-cfia/github-workflows/.github/workflows/workflow-markdown-check.yml@main + secrets: inherit + + repo-standard: + uses: ai-cfia/github-workflows/.github/workflows/workflow-repo-standards-validation.yml@main + secrets: inherit + + test-python: + uses: ai-cfia/github-workflows/.github/workflows/workflow-lint-test-python.yml@main + secrets: inherit