Fix GH Actions

This commit is contained in:
Kevo 2022-02-26 11:42:18 +01:00
parent 896d3b0cf6
commit 9db2fb38f1
3 changed files with 11 additions and 5 deletions

View File

@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.10]
python-version: ['3.10']
steps:
- uses: actions/checkout@v2

View File

@ -7,14 +7,17 @@ on:
jobs:
deploy:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.10']
steps:
- uses: actions/checkout@v2
- name: Set up Python
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: '^3.10'
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |

View File

@ -5,14 +5,17 @@ on: [workflow_dispatch, push, pull_request]
jobs:
deploy:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.10']
steps:
- uses: actions/checkout@v2
- name: Set up Python
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: '^3.10'
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |