web-dev-qa-db-ja.com

GitHubアクションでPIPキャッシュを使用する方法

私はGitHubアクションでキャッシュされたPIPを使うことにいくつかの問題を抱えています。私のワークフローの設定はです

name: tests

on: [Push, pull_request]

jobs:
  linux:

    runs-on: ubuntu-18.04
    strategy:
      max-parallel: 4
      matrix:
        python-version: [3.6, 3.7, 3.8]

    steps:
    - uses: actions/checkout@v1
    - name: Set up Python ${{ matrix.python-version }}
      uses: actions/setup-python@v1
      with:
        python-version: ${{ matrix.python-version }}
    - uses: actions/cache@v1
      with:
        path: ~/.cache/pip
        key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
        restore-keys: |
          ${{ runner.os }}-pip-
    - name: Install
      if: steps.cache.outputs.cache-hit != 'true'
      run: |
        pip install pytest pytest-cov bandit sphinx recommonmark
        python -m pip install --upgrade pip
        pip install .
    - name: Test with pytest
      run: |
        pytest --disable-pytest-warnings --cov-report=xml --cov=chepy --cov-config=.coveragerc tests/
        coverage report -m
    - name: Test with bandit
      run: |
        bandit --recursive chepy/ --ignore-nosec --skip B101,B413,B303,B310,B112,B304,B320,B410,B404
    - name: Test docs
      run: |
        make -C docs/ clean html
    - name: Upload to codecov
      uses: codecov/[email protected]
      with:
        token: ${{secrets.CODECOV_TOKEN}}
        file: ./coverage.xml
 _

私が持っています問題は、後続のアクションでは、それがキャッシュを使用しませんが、代わりにPIPから再度インストールすることです。

どのようにキャッシュを使うのですか?

7
securisec

_actions/cache_を使用する手順でidを追加することを忘れました。これは、Installステップの条件に必要です。

_- uses: actions/cache@v1
  id:   cache
  with:
   ...
_
2
Samira