Skip to content

Commit

Permalink
🐎 ci(Python): tweak set-up
Browse files Browse the repository at this point in the history
see #526
  • Loading branch information
duncdrum committed Oct 11, 2022
1 parent adc8f47 commit 6cd337b
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,20 @@ jobs:
uses: actions/setup-python@v4
with:
python-version: '3.9'
- name: Install Python dependencies
run: python -m pip install --upgrade pip
check-latest: true
- name: Get pip cache dir
id: pip-cache
run: |
echo "::set-output name=dir::$(pip cache dir)"
- name: Use pip Cache
uses: actions/cache@v3
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
restore-keys: |
${{ runner.os }}-pip-
${{ runner.os }}-pip-
# - name: Install Python dependencies
# run: python -m pip install --upgrade pip
- name: Install Python tools
run: pip install ReadActor pandas frictionless csvkit
- name: Validate input CSV Files
Expand Down

0 comments on commit 6cd337b

Please sign in to comment.