]> git.phdru.name Git - m_librarian.git/commitdiff
CI(GHActions): Group tasks
authorOleg Broytman <phd@phdru.name>
Thu, 23 Sep 2021 11:26:24 +0000 (14:26 +0300)
committerOleg Broytman <phd@phdru.name>
Thu, 23 Sep 2021 11:26:24 +0000 (14:26 +0300)
.github/workflows/run-tests.yaml

index e312f7d4b8f668a7156c73800dc0e9c9fb1a4992..e6378d2de0470d6f98219449e202e8283e86e595 100644 (file)
@@ -25,6 +25,8 @@ jobs:
     runs-on: ${{ matrix.os }}
 
     steps:
+
+      # Setup Python/pip
       - uses: actions/checkout@v2
       - uses: actions/setup-python@v2
         with:
@@ -34,6 +36,8 @@ jobs:
         with:
           path: ${{ matrix.pip-cache-path }}
           key: ${{ runner.os }}-pip
+
+      # Setup tox
       - name: Install dependencies
         run: |
           python --version
@@ -52,6 +56,7 @@ jobs:
           with open(os.environ['GITHUB_ENV'], 'a') as f:
             f.write('TOXENV=' + toxenv + '\n')
         shell: python
+
       - name: Run tox
         run: |
           python -c "import os; print(os.environ['TOXENV'])"