Skip to content

Commit

Permalink
feat(ci): enable pip cache in CI (e3nn#430)
Browse files Browse the repository at this point in the history
  • Loading branch information
SauravMaheshkar authored Jan 11, 2024
1 parent 79cc9b9 commit ac3528f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]
### Added
- enable `pip` caching in CI
- refactor to use `pyproject.toml` for packaging
- refactor `gh` community files
- move `pylint`, `coverage` and `flake8` configuration to `pyproject.toml`
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,12 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: "pip"
cache-dependency-path: |
pyproject.toml
- name: Install flake8
run: |
pip install flake8 Flake8-pyproject
Expand Down

0 comments on commit ac3528f

Please sign in to comment.