From: Daniele Varrazzo Date: Tue, 2 Mar 2021 02:10:07 +0000 (+0100) Subject: ci: consistent uppercase in steps titles X-Git-Tag: 3.0.dev0~94^2~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=689bac0a65e9f163bb04075b63cd02150977a68e;p=thirdparty%2Fpsycopg.git ci: consistent uppercase in steps titles --- 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