fix python version issue in ci

This commit is contained in:
2022-05-11 16:19:12 +02:00
parent 5bf31b1304
commit 39c93e8957
2 changed files with 5 additions and 5 deletions

View File

@@ -2,9 +2,9 @@ name: CI
on:
push:
branches: [master]
branches: [main]
pull_request:
branches: [master]
branches: [main]
workflow_dispatch:
jobs:
@@ -13,7 +13,7 @@ jobs:
strategy:
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
python: [3.10]
python: ["3.10"]
steps:
- uses: actions/checkout@v2