diff options
author | Nejc Habjan <hab.nejc@gmail.com> | 2021-01-26 23:39:57 +0100 |
---|---|---|
committer | Nejc Habjan <hab.nejc@gmail.com> | 2021-01-26 23:39:57 +0100 |
commit | c6241e791357d3f90e478c456cc6d572b388e6d1 (patch) | |
tree | aa0e633bef75b1c7c1a172209f9466558d55df4e | |
parent | 8f9223041481976522af4c4f824ad45e66745f29 (diff) | |
download | gitlab-c6241e791357d3f90e478c456cc6d572b388e6d1.tar.gz |
chore(ci): fix copy/paste oopsie
-rw-r--r-- | .github/workflows/test.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 4be5601..e00d33d 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -33,10 +33,10 @@ jobs: toxenv: [py_func_v4, py_func_cli] steps: - uses: actions/checkout@v2 - - name: Set up Python ${{ matrix.python-version }} + - name: Set up Python uses: actions/setup-python@v2 with: - python-version: ${{ matrix.python-version }} + python-version: 3.8 - name: Install dependencies run: pip install tox pytest-github-actions-annotate-failures - name: Run tests |