【发布时间】:2021-09-10 15:17:03
【问题描述】:
我的 gh-actions 工作流程通常看起来像
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.6", "3.7", "3.8", "3.9"]
steps:
...
有没有办法指定从特定 Python 版本开始的所有主要 Python 版本,例如,
python-version: "3.x >= 3.6"
没有像上面那样明确列出它们?
【问题讨论】:
标签: python github-actions