From 8a4086010a606f5d2be9e5f87c6b458822197e48 Mon Sep 17 00:00:00 2001 From: Phellippe Lima <120402907+phpinhei-te@users.noreply.github.com> Date: Fri, 28 Jun 2024 09:45:39 +0100 Subject: [PATCH] CP-2205 - Run install and tests for all modules (#24) * CP-2205 - build and test * CP-2205 - Force failure * CP-2205 - Revert failure and run on PR --- .github/workflows/python.yaml | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 .github/workflows/python.yaml diff --git a/.github/workflows/python.yaml b/.github/workflows/python.yaml new file mode 100644 index 00000000..1f19a282 --- /dev/null +++ b/.github/workflows/python.yaml @@ -0,0 +1,29 @@ +name: Python CI + +on: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-python@v5 + with: + python-version: '3.11' + cache: 'pip' + + - name: Install core module + run: pip install -e thousandeyes-sdk-core + + - name: Install and test modules + run: | + pip install pytest + for module in $(find . -maxdepth 1 -type d -name "thousandeyes-sdk-*" ! -name "thousandeyes-sdk-core" | cut -c 3-); do + pip install -e $module + pytest $module + done