Skip make deps if cache hint in ci
This commit is contained in:
parent
bceeb236c2
commit
24a2087b78
5
.github/workflows/ci.yml
vendored
5
.github/workflows/ci.yml
vendored
@ -35,6 +35,9 @@ jobs:
|
|||||||
run: |
|
run: |
|
||||||
pip install -U pip poetry
|
pip install -U pip poetry
|
||||||
poetry config virtualenvs.create false
|
poetry config virtualenvs.create false
|
||||||
|
- name: Install Dependencies
|
||||||
|
if: steps.cache.outputs.cache-hit != 'true'
|
||||||
|
run: make deps
|
||||||
- name: CI
|
- name: CI
|
||||||
env:
|
env:
|
||||||
MYSQL_PASS: root
|
MYSQL_PASS: root
|
||||||
@ -43,4 +46,4 @@ jobs:
|
|||||||
POSTGRES_PASS: 123456
|
POSTGRES_PASS: 123456
|
||||||
POSTGRES_HOST: 127.0.0.1
|
POSTGRES_HOST: 127.0.0.1
|
||||||
POSTGRES_PORT: 5432
|
POSTGRES_PORT: 5432
|
||||||
run: make ci
|
run: make _ci
|
||||||
|
Loading…
x
Reference in New Issue
Block a user