Skip to content

Commit

Permalink
Cache dependencies in GitHub actions (#11)
Browse files Browse the repository at this point in the history
  • Loading branch information
tachyonicClock authored Feb 22, 2024
1 parent 1c8e577 commit cb8d9c1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/unit_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,10 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: 'pip' # caching pip dependencies
- name: Install dependencies
run: |
python -m pip install '.[dev]'
Expand Down

0 comments on commit cb8d9c1

Please sign in to comment.