This commit is contained in:
parent
cd4536eb20
commit
38f3e51081
1 changed files with 19 additions and 2 deletions
|
|
@ -2,6 +2,23 @@ on: [push]
|
||||||
jobs:
|
jobs:
|
||||||
test:
|
test:
|
||||||
runs-on: docker
|
runs-on: docker
|
||||||
uses: actions/checkout@v4
|
|
||||||
steps:
|
steps:
|
||||||
- run: echo All Good
|
- run: echo All Good
|
||||||
|
checkout:
|
||||||
|
runs-on: docker
|
||||||
|
name: Checkout
|
||||||
|
steps:
|
||||||
|
- name: Cache repository
|
||||||
|
uses: actions/cache@v4
|
||||||
|
id: cache-repository
|
||||||
|
with:
|
||||||
|
path: repository
|
||||||
|
key: ${{ runner.os }}-repository-${{ github.sha }}
|
||||||
|
restore-keys: |
|
||||||
|
${{ runner.os }}-repository-
|
||||||
|
|
||||||
|
- name: Checkout repository
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
with:
|
||||||
|
path: repository
|
||||||
|
submodules: recursive
|
||||||
Loading…
Add table
Add a link
Reference in a new issue