We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5755482 commit 967acbbCopy full SHA for 967acbb
.github/workflows/self-smoke-test-action.yml
@@ -48,8 +48,14 @@ jobs:
48
timeout-minutes: 2
49
50
steps:
51
+ - name: Check out the action locally
52
+ uses: actions/checkout@v3
53
+ with:
54
+ path: test
55
- name: Install the packaging-related tools
56
run: python3 -m pip install build twine
57
+ env:
58
+ PIP_CONSTRAINT: test/requirements/runtime.txt
59
- name: Create the stub package importable directory
60
run: mkdir -pv src/test_package
61
- name: Populate the stub package `__init__.py`
@@ -77,10 +83,6 @@ jobs:
77
83
env:
78
84
TWINE_USERNAME: ${{ env.devpi-username }}
79
85
TWINE_PASSWORD: ${{ env.devpi-password }}
80
- - name: Check out the action locally
81
- uses: actions/checkout@v3
82
- with:
- path: test
86
- name: ✅ Smoke-test the locally checked out action
87
uses: ./test
88
with:
0 commit comments