]> git.phdru.name Git - m_librarian.git/blobdiff - .github/workflows/run-tests.yaml
CI(GHActions): Group tasks
[m_librarian.git] / .github / workflows / run-tests.yaml
index c1d896de2b63574a171abaa1c1244b4b731bebce..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,7 +56,8 @@ 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'])"
-          python -m tox
+          tox