From d271d088caa74f9f790d5f6fdb3a04aa30952dac Mon Sep 17 00:00:00 2001 From: Egor Tensin Date: Tue, 4 May 2021 00:44:17 +0300 Subject: workflows/test: tweak step names --- .github/workflows/test.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 5e964f6..108eab2 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -27,7 +27,7 @@ jobs: python-version: '${{ matrix.python-version }}' - name: Install dependencies run: pip install -r requirements.txt - - name: Run the tests + - name: Run tests run: ./.ci/bin/main.sh publish_pypi: @@ -46,17 +46,17 @@ jobs: python-version: 3 - name: Verify package can be installed run: python3 -m pip install . - - name: Install tools + - name: Install package builder run: python3 -m pip install --upgrade build - name: Build package run: python3 -m build - - name: Upload dist + - name: Publish as artifact uses: actions/upload-artifact@v2 with: name: dist path: dist if-no-files-found: error - - name: Publish package + - name: Publish to PyPI if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags') uses: pypa/gh-action-pypi-publish@release/v1 with: -- cgit v1.2.3