如何从 github 行为中 运行 毒害

How to run tox from github actions

我是 tox 和 GitHub 操作的新手,我正在寻找一种使它们协同工作的简单方法。我写了这个 simple workflow:

name: Python package

on: [push]

jobs:
  build:

    runs-on: ubuntu-latest
    strategy:
      max-parallel: 4
      matrix:
        python-version: [3.7]

    steps:
    - uses: actions/checkout@v1
    - name: Install tox
      run: pip install tox
    - name: Run tox
      run: tox

它只是安装 tox,然后 运行s 它。但是当我 run this workflow 时,tox 安装工作正常,但是 运行 命令 returns 出错:

tox: command not found

从 GitHub 行动中 运行 毒害的正确方法是什么?

(从评论延伸:)

Github Actions 文档使用 actions/setup-python@v2:

- name: Setup Python
  uses: actions/setup-python@v2
  with:
    python-version: ${{ matrix.python }}

你也可以试试python -m tox.

您也可以使用tox-gh-actions

在您的工作流文件中:

 steps:
  - uses: actions/checkout@v1
  - name: Set up Python ${{ matrix.python-version }}
    uses: actions/setup-python@v2
    with:
      python-version: ${{ matrix.python-version }}
  - name: Install dependencies
    run: |
      python -m pip install --upgrade pip
      pip install tox tox-gh-actions
  - name: Test with tox
    run: tox

在您的 tox.ini 中(其他配置格式也适用):

[gh-actions]
python = 
  3.8: py38