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]
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- name: Cache stuff
|
||||
uses: actions/cache@v3
|
||||
with:
|
||||
path: .
|
||||
key: stuff
|
||||
- run: sleep 5
|
||||
- name: Hello world
|
||||
run: docker run hello-world
|
||||
- run: docker ps
|
||||
- run: docker container ls
|
||||
|
||||
|
|
Loading…
Reference in a new issue