Skip to content

Commit 3ab86e8

Browse files
committed
autopush
1 parent 58ee5db commit 3ab86e8

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

.github/workflows/pio.yaml

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,12 @@ jobs:
2626
with:
2727
python-version: ${{ matrix.python-version }}
2828

29-
- uses: actions/cache@v3
30-
id: cache-virtualenv
31-
with:
32-
path: ${{ env.pythonLocation }}
33-
key: ${{ env.pythonLocation }}-2-${{ hashFiles('pyproject.toml') }}-${{ matrix.os }}-${{ matrix.python-version }}
29+
# Caching disabled to get latest updates
30+
# - uses: actions/cache@v3
31+
# id: cache-virtualenv
32+
# with:
33+
# path: ${{ env.pythonLocation }}
34+
# key: ${{ env.pythonLocation }}-2-${{ hashFiles('pyproject.toml') }}-${{ matrix.os }}-${{ matrix.python-version }}
3435

3536
- name: Install Fortran compiler on macOS
3637
run: |
@@ -39,7 +40,8 @@ jobs:
3940
echo "CC=gcc-${{ matrix.gcc-version }}" >> "$GITHUB_ENV"
4041
4142
- name: Install dependencies
42-
if: steps.cache-virtualenv.outputs.cache-hit != 'true'
43+
# Removed cache conditional to always install fresh
44+
# if: steps.cache-virtualenv.outputs.cache-hit != 'true'
4345
run: |
4446
python -m pip install --upgrade pip
4547
python -m pip install -e .[develop]

0 commit comments

Comments
 (0)