Skip to content

Commit

Permalink
cd auto
Browse files Browse the repository at this point in the history
  • Loading branch information
Jorgedavyd committed Jun 11, 2024
1 parent 1e8e2e2 commit 8d14cf1
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/CD.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,15 @@ jobs:
uses: actions/setup-python@v2
with:
python-version: '3.10'


- name: Cache pip
uses: actions/cache@v2
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
restore-keys: |
${{ runner.os }}-pip-
- name: Install dependencies
run: |
python -m pip install --upgrade pip
Expand Down

0 comments on commit 8d14cf1

Please sign in to comment.