Try caching
This commit is contained in:
parent
f7f16838be
commit
3404c6a06d
1 changed files with 6 additions and 0 deletions
|
@ -11,8 +11,14 @@ jobs:
|
||||||
things: [1, 2, 3, 4, 5]
|
things: [1, 2, 3, 4, 5]
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
|
- name: Cache stuff
|
||||||
|
uses: actions/cache@v3
|
||||||
|
with:
|
||||||
|
path: .
|
||||||
|
key: stuff
|
||||||
- run: sleep 5
|
- run: sleep 5
|
||||||
- name: Hello world
|
- name: Hello world
|
||||||
run: docker run hello-world
|
run: docker run hello-world
|
||||||
- run: docker ps
|
- run: docker ps
|
||||||
- run: docker container ls
|
- run: docker container ls
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue