🎨Reuse existing requirement pins @ smoke-test
This commit is contained in:
parent
5755482491
commit
967acbb201
|
@ -48,8 +48,14 @@ jobs:
|
||||||
timeout-minutes: 2
|
timeout-minutes: 2
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
|
- name: Check out the action locally
|
||||||
|
uses: actions/checkout@v3
|
||||||
|
with:
|
||||||
|
path: test
|
||||||
- name: Install the packaging-related tools
|
- name: Install the packaging-related tools
|
||||||
run: python3 -m pip install build twine
|
run: python3 -m pip install build twine
|
||||||
|
env:
|
||||||
|
PIP_CONSTRAINT: test/requirements/runtime.txt
|
||||||
- name: Create the stub package importable directory
|
- name: Create the stub package importable directory
|
||||||
run: mkdir -pv src/test_package
|
run: mkdir -pv src/test_package
|
||||||
- name: Populate the stub package `__init__.py`
|
- name: Populate the stub package `__init__.py`
|
||||||
|
@ -77,10 +83,6 @@ jobs:
|
||||||
env:
|
env:
|
||||||
TWINE_USERNAME: ${{ env.devpi-username }}
|
TWINE_USERNAME: ${{ env.devpi-username }}
|
||||||
TWINE_PASSWORD: ${{ env.devpi-password }}
|
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
|
- name: ✅ Smoke-test the locally checked out action
|
||||||
uses: ./test
|
uses: ./test
|
||||||
with:
|
with:
|
||||||
|
|
Loading…
Reference in New Issue