From 967acbb2016f6a5f8dd2bf5a3f57fee67f50dc94 Mon Sep 17 00:00:00 2001 From: Sviatoslav Sydorenko Date: Tue, 6 Dec 2022 22:30:01 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=8E=A8Reuse=20existing=20requirement=20pi?= =?UTF-8?q?ns=20@=20smoke-test?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/self-smoke-test-action.yml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/.github/workflows/self-smoke-test-action.yml b/.github/workflows/self-smoke-test-action.yml index bf35336..9346612 100644 --- a/.github/workflows/self-smoke-test-action.yml +++ b/.github/workflows/self-smoke-test-action.yml @@ -48,8 +48,14 @@ jobs: timeout-minutes: 2 steps: + - name: Check out the action locally + uses: actions/checkout@v3 + with: + path: test - name: Install the packaging-related tools run: python3 -m pip install build twine + env: + PIP_CONSTRAINT: test/requirements/runtime.txt - name: Create the stub package importable directory run: mkdir -pv src/test_package - name: Populate the stub package `__init__.py` @@ -77,10 +83,6 @@ jobs: env: TWINE_USERNAME: ${{ env.devpi-username }} TWINE_PASSWORD: ${{ env.devpi-password }} - - name: Check out the action locally - uses: actions/checkout@v3 - with: - path: test - name: ✅ Smoke-test the locally checked out action uses: ./test with: