From 689bac0a65e9f163bb04075b63cd02150977a68e Mon Sep 17 00:00:00 2001 From: Daniele Varrazzo Date: Tue, 2 Mar 2021 03:10:07 +0100 Subject: [PATCH] ci: consistent uppercase in steps titles --- .github/workflows/docs.yml | 2 +- .github/workflows/lint.yml | 14 +++++++------- .github/workflows/tests.yml | 8 ++++---- 3 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index e510c7c4d..ccadae263 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -10,5 +10,5 @@ jobs: steps: - uses: actions/checkout@v2 - - name: build docs + - name: Trigger docs build run: TRAVIS_BRANCH=master ./tools/travis_update_docs.sh diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 29a3b4e91..e97a797f2 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -11,11 +11,11 @@ jobs: steps: - uses: actions/checkout@v2 - uses: actions/setup-python@v2 - - name: install tox + - name: Install tox run: pip install tox - - name: run black - run: tox -e black . - - name: run flake8 - run: tox -e flake8 . - - name: run mypy - run: tox -e mypy . + - name: Run black + run: tox -e black + - name: Run flake8 + run: tox -e flake8 + - name: Run mypy + run: tox -e mypy diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 9aba7e516..0c4dffc70 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -48,9 +48,9 @@ jobs: - uses: actions/setup-python@v2 with: python-version: ${{ matrix.python }} - - name: install tox + - name: Install tox run: pip install tox - - name: run tests + - name: Run tests run: tox -c psycopg3 -e ${{ matrix.python }} -- --color yes c: @@ -99,7 +99,7 @@ jobs: - uses: actions/setup-python@v2 with: python-version: ${{ matrix.python }} - - name: install tox + - name: Install tox run: pip install tox - - name: run tests + - name: Run tests run: tox -c psycopg3_c -e ${{ matrix.python }} -- --color yes -- 2.47.2