ci fuckery
This commit is contained in:
parent
e7027c07be
commit
17b4c334e1
1 changed files with 6 additions and 3 deletions
|
@ -20,10 +20,13 @@ jobs:
|
||||||
apk add --no-cache nodejs git openssh python3 py3-pip
|
apk add --no-cache nodejs git openssh python3 py3-pip
|
||||||
- name: Checkout repository
|
- name: Checkout repository
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
|
with:
|
||||||
|
# IMPORTANT! Otherwise, the script cannot see all commits and will assume the last commit is the author of every file.
|
||||||
|
fetch-depth: 0
|
||||||
- name: Create virtualenv and install Python dependencies
|
- name: Create virtualenv and install Python dependencies
|
||||||
run: |
|
run: |
|
||||||
python -m venv venv
|
python -m venv .venv
|
||||||
. venv/bin/activate
|
. .venv/bin/activate
|
||||||
pip install --upgrade GitPython requests
|
pip install --upgrade GitPython requests
|
||||||
- name: Run verification script
|
- name: Run verification script
|
||||||
run: . venv/bin/activate && python verify.py
|
run: . .venv/bin/activate && python verify.py
|
Loading…
Add table
Reference in a new issue