Skip to content

Commit

Permalink
Update build-run-validate.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
fabriziosalmi authored Jan 25, 2025
1 parent 83ed0b4 commit c226c7a
Showing 1 changed file with 16 additions and 1 deletion.
17 changes: 16 additions & 1 deletion .github/workflows/build-run-validate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
- name: Install Dependencies
run: |
sudo apt update
sudo apt install -y wget git build-essential curl python3
sudo apt install -y wget git build-essential curl python3 python3-pip
- name: Install Go 1.23.4
uses: actions/setup-go@v4
Expand All @@ -40,6 +40,21 @@ jobs:
exit 1
fi
- name: Install Python Dependencies
run: |
python3 -m venv venv
source venv/bin/activate
pip install tqdm
- name: Cache Python Dependencies
id: cache-pip
uses: actions/cache@v3
with:
path: ~/.cache/pip
key: pip-${{ runner.os }}-${{ hashFiles('**/requirements.txt') }}
restore-keys: |
pip-${{ runner.os }}-
- name: Clone caddy-waf Repository
run: |
git clone https://github.com/fabriziosalmi/caddy-waf.git
Expand Down

0 comments on commit c226c7a

Please sign in to comment.