From 426d0c348ff22e7ee4771ed27023ea6e328f26fc Mon Sep 17 00:00:00 2001 From: Hugo Date: Mon, 2 Sep 2019 11:22:17 +0300 Subject: [PATCH] Rename var to follow example at https://github.com/actions/setup-python --- .github/workflows/lint.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 60b8e2f44..d5f67ce99 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -8,15 +8,15 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: [3.7] + python: [3.7] steps: - uses: actions/checkout@v1 - - name: Set up Python ${{ matrix.python-version }} + - name: Set up Python ${{ matrix.python }} uses: actions/setup-python@v1 with: - python-version: ${{ matrix.python-version }} + python-version: ${{ matrix.python }} - name: Install dependencies run: |