From b6bf562b58335001edd958139e976fb3cb52e57c Mon Sep 17 00:00:00 2001 From: Gil Forcada Codinachs Date: Thu, 2 Nov 2023 09:23:41 +0100 Subject: [PATCH] test --- .github/workflows/testing.yml | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/.github/workflows/testing.yml b/.github/workflows/testing.yml index 352fcab..ad20dfe 100644 --- a/.github/workflows/testing.yml +++ b/.github/workflows/testing.yml @@ -27,12 +27,22 @@ jobs: lint: name: Lint code runs-on: "ubuntu-latest" + strategy: + matrix: + python-version: [3.8] steps: - uses: actions/checkout@v4 - name: Set up Python uses: actions/setup-python@v4 with: - python-version: "3.8" + python-version: ${{ matrix.python-version }} + - name: Cache packages + uses: actions/cache@v3 + with: + path: .tox + key: ${{ runner.os }}-pip-${{ matrix.python-version }}-${{ hashFiles('tox.ini') }} + restore-keys: | + ${{ runner.os }}-pip-${{ matrix.python-version }}- - name: Install dependencies run: python -m pip install tox - name: Run linting