cache
- name: Checkout code uses: actions/checkout@v2 - name: Create LFS file list run: git lfs ls-files -l | cut -d' ' -f1 | sort > .lfs-assets-id - name: Restore LFS cache uses: actions/cache@v2 id: lfs-cache with: path: .git/lfs key: ${{ runner.os }}-lfs-${{ hashFiles('.lfs-assets-id') }}-v1 - name: Git LFS Pull run: git lfs pull
Cache for LFS · Issue #165 · actions/checkout
namurphy added a commit to PlasmaPy/PlasmaPy-NEI that referenced this issue Jan 19, 2021 * Copy over testing workflow from PlasmaPy * Remove tentatively added conda python package thing * Remove Python 3.6 tests from GitHub Actions file * Copy over tox.ini from PlasmaPy * Remove Python 3.6 stuff from tox.ini * Update copyright years * Replace old pytest config with current one The previous one referred to functionality of pytest-doctestplus, astropy's testing plugin, which we've gotten rid of in plasmapy proper a while ago.
https://github.com/actions/checkout/issues/165

Seonglae Cho