mirror of
https://github.com/AUTOMATIC1111/stable-diffusion-webui.git
synced 2024-11-27 06:40:10 +08:00
CI: Use native actions/setup-python caching
This commit is contained in:
parent
1a5b86ad65
commit
0fc1848e40
13
.github/workflows/on_pull_request.yaml
vendored
13
.github/workflows/on_pull_request.yaml
vendored
@ -19,22 +19,19 @@ jobs:
|
|||||||
- name: Checkout Code
|
- name: Checkout Code
|
||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v3
|
||||||
- name: Set up Python 3.10
|
- name: Set up Python 3.10
|
||||||
uses: actions/setup-python@v3
|
uses: actions/setup-python@v4
|
||||||
with:
|
with:
|
||||||
python-version: 3.10.6
|
python-version: 3.10.6
|
||||||
- uses: actions/cache@v2
|
cache: pip
|
||||||
with:
|
cache-dependency-path: |
|
||||||
path: ~/.cache/pip
|
**/requirements*txt
|
||||||
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
|
|
||||||
restore-keys: |
|
|
||||||
${{ runner.os }}-pip-
|
|
||||||
- name: Install PyLint
|
- name: Install PyLint
|
||||||
run: |
|
run: |
|
||||||
python -m pip install --upgrade pip
|
python -m pip install --upgrade pip
|
||||||
pip install pylint
|
pip install pylint
|
||||||
# This lets PyLint check to see if it can resolve imports
|
# This lets PyLint check to see if it can resolve imports
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run : |
|
run: |
|
||||||
export COMMANDLINE_ARGS="--skip-torch-cuda-test --exit"
|
export COMMANDLINE_ARGS="--skip-torch-cuda-test --exit"
|
||||||
python launch.py
|
python launch.py
|
||||||
- name: Analysing the code with pylint
|
- name: Analysing the code with pylint
|
||||||
|
Loading…
Reference in New Issue
Block a user