ci: remove cache action

This commit is contained in:
Revant Nandgaonkar 2023-04-21 11:32:53 +05:30
parent 361cbada9c
commit 6435c9ef64

View file

@ -16,10 +16,9 @@ jobs:
uses: actions/checkout@v3 uses: actions/checkout@v3
- name: Setup Python - name: Setup Python
run: sudo apt-get install -y python3 python3-venv uses: actions/setup-python@v4
with:
- name: Setup Build Essential python-version: "3.10.6"
run: sudo apt-get install -y build-essential
# For shfmt pre-commit hook # For shfmt pre-commit hook
- name: Setup Go - name: Setup Go
@ -27,14 +26,6 @@ jobs:
with: with:
go-version: "^1.14" go-version: "^1.14"
- name: Cache
uses: actions/cache@v3
with:
path: |
~/.cache/pre-commit
~/.cache/pip
key: lint-${{ hashFiles('.pre-commit-config.yaml') }}
- name: Install pre-commit - name: Install pre-commit
run: pip install -U pre-commit run: pip install -U pre-commit