From: Oleg Broytman Date: Thu, 23 Sep 2021 11:26:24 +0000 (+0300) Subject: CI(GHActions): Group tasks X-Git-Tag: 0.1.6~3 X-Git-Url: https://git.phdru.name/m_librarian.git/?a=commitdiff_plain;h=65e154f86143ed4ddf0b362f06d589035d7dae74;p=m_librarian.git CI(GHActions): Group tasks --- diff --git a/.github/workflows/run-tests.yaml b/.github/workflows/run-tests.yaml index e312f7d..e6378d2 100644 --- a/.github/workflows/run-tests.yaml +++ b/.github/workflows/run-tests.yaml @@ -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'])"