]> git.ipfire.org Git - thirdparty/psycopg.git/commitdiff
ci: consistent uppercase in steps titles 36/head
authorDaniele Varrazzo <daniele.varrazzo@gmail.com>
Tue, 2 Mar 2021 02:10:07 +0000 (03:10 +0100)
committerDaniele Varrazzo <daniele.varrazzo@gmail.com>
Tue, 2 Mar 2021 02:11:32 +0000 (03:11 +0100)
.github/workflows/docs.yml
.github/workflows/lint.yml
.github/workflows/tests.yml

index e510c7c4d7c7682b3e4196ad2d313cf8edb5dc9b..ccadae263f090ca700dd7561171680214acae68f 100644 (file)
@@ -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
index 29a3b4e919a02a80424edc317ca0add454656453..e97a797f2f814912e71e9e792915efccb1ca2dd2 100644 (file)
@@ -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
index 9aba7e516b6cc6d138304e0eb41542ed51f20678..0c4dffc706366758390325d75f988e84cbf215f8 100644 (file)
@@ -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