Setup up caching in CI workflow #22

Closed
cyclane wants to merge 1 commits from cache-workflow into main
1 changed files with 13 additions and 4 deletions

View File

@ -20,15 +20,24 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: ${{ env.DEPLOY == 'some' && 2 || 1 }}
# - name: Install dependencies
# run: |
# apt update
# apt install -y python3-pip
# pip3 install -r requirements.txt
# ansible-galaxy collection install community.general
- name: Setup python
uses: actions/setup-python@v5
with:
python-version: "3.9"
cache: pip
- name: Install dependencies
run: |
apt update
apt install -y python3-pip
pip3 install -r requirements.txt
pip install -r requirements.txt
ansible-galaxy collection install community.general
- name: Check playbooks