From 0e31ce2cb5312a39449b64163fb3d6b2f2edea44 Mon Sep 17 00:00:00 2001 From: Adil Hafeez Date: Fri, 11 Jul 2025 15:10:56 -0700 Subject: [PATCH] add arch tools test --- .github/workflows/arch_tools_tests.yml | 37 ++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 .github/workflows/arch_tools_tests.yml diff --git a/.github/workflows/arch_tools_tests.yml b/.github/workflows/arch_tools_tests.yml new file mode 100644 index 00000000..ff594753 --- /dev/null +++ b/.github/workflows/arch_tools_tests.yml @@ -0,0 +1,37 @@ +name: arch tools tests + +on: + push: + branches: + - main + pull_request: + +jobs: + e2e_model_server_tests: + runs-on: ubuntu-latest-m + defaults: + run: + working-directory: ./arch/tools + + steps: + - name: Checkout code + uses: actions/checkout@v3 + + - name: Set up Python + uses: actions/setup-python@v4 + with: + python-version: "3.12" + + - name: install poetry + run: | + export POETRY_VERSION=1.8.5 + curl -sSL https://install.python-poetry.org | python3 - + export PATH="$HOME/.local/bin:$PATH" + + - name: install arch tools + run: | + poetry install + + - name: run tests + run: | + poetry run pytest