From 3551453eff004a580430adac88a8a2efd784f3ed Mon Sep 17 00:00:00 2001 From: Steve Kowalik Date: Sun, 26 Apr 2020 14:56:08 +1000 Subject: [PATCH] Actually use the Python version in GA workflow (#1485) It appears that the Python versions in our strategy matrix are not used unless we drag them down into the steps. Do so now. --- .github/workflows/check.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml index c5e8d5f2..05eb9f34 100644 --- a/.github/workflows/check.yml +++ b/.github/workflows/check.yml @@ -11,6 +11,8 @@ jobs: steps: - uses: actions/checkout@v2 - uses: actions/setup-python@v1 + with: + python-version: "${{ matrix.python-version }}" - run: pip install tox -r requirements.txt -r test-requirements.txt - run: tox -elint - run: pytest --cov=github