mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2024-12-22 17:49:43 +01:00
Tell CI to clone submodules
Otherwise it will not find the source files, as they wouldn't exist if they're not cloned.
This commit is contained in:
parent
3dd40c48cf
commit
a168f73a67
1 changed files with 6 additions and 0 deletions
6
.github/workflows/ci.yml
vendored
6
.github/workflows/ci.yml
vendored
|
@ -18,6 +18,8 @@ jobs:
|
|||
|
||||
steps:
|
||||
- uses: actions/checkout@v1
|
||||
with:
|
||||
submodules: true
|
||||
|
||||
- name: Install dependencies
|
||||
run: brew install ninja sdl2 sdl2_mixer
|
||||
|
@ -70,6 +72,8 @@ jobs:
|
|||
|
||||
steps:
|
||||
- uses: actions/checkout@v1
|
||||
with:
|
||||
submodules: true
|
||||
|
||||
- name: CMake configure (default version)
|
||||
run: |
|
||||
|
@ -118,6 +122,8 @@ jobs:
|
|||
|
||||
steps:
|
||||
- uses: actions/checkout@v1
|
||||
with:
|
||||
submodules: true
|
||||
|
||||
- name: Cache SDL
|
||||
uses: actions/cache@v2
|
||||
|
|
Loading…
Reference in a new issue