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

index c1d6c40c083873ce114b5e952c15eef22f73b759..8387a9dd5c5ed5959364708216e10c569f9ca470 100644 (file)
@@ -22,6 +22,8 @@ jobs:
     runs-on: ${{ matrix.os }}
 
     steps:
+
+      # Setup Python/pip
       - uses: actions/checkout@v2
       - uses: actions/setup-python@v2
         with:
@@ -31,6 +33,8 @@ jobs:
         with:
           path: ${{ matrix.pip-cache-path }}
           key: ${{ runner.os }}-pip
+
+      # Setup tox
       - name: Install dependencies
         run: |
           python --version
@@ -50,6 +54,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'])"