Skip to content

Commit

Permalink
add: yml stb
Browse files Browse the repository at this point in the history
  • Loading branch information
AsPJT committed Oct 30, 2023
1 parent 022e290 commit 0bcb4f7
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 6 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/cmake-all-build.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: CMake-All-Build
name: CMake-All-Build

on:
pull_request:
Expand All @@ -20,7 +20,9 @@ jobs:
uses: actions/checkout@v3

- name: Checkout submodules
run: git submodule update --init --recursive ExternalLibrary/googletest
run: |
git submodule update --init --recursive ExternalLibrary/googletest
git submodule update --init --recursive ExternalLibrary/stb
- name: Install dependencies
run: |
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/cmake-build-on-push.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: CMake-Build-On-Push
name: CMake-Build-On-Push

on:
push:
Expand All @@ -22,7 +22,9 @@ jobs:
uses: actions/checkout@v3

- name: Checkout submodules
run: git submodule update --init --recursive ExternalLibrary/googletest
run: |
git submodule update --init --recursive ExternalLibrary/googletest
git submodule update --init --recursive ExternalLibrary/stb
- name: Install dependencies
run: |
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/cmake-unit-test.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: CMake-Unit-Test
name: CMake-Unit-Test

on:
pull_request:
Expand All @@ -17,7 +17,9 @@ jobs:
uses: actions/checkout@v3

- name: Checkout submodules
run: git submodule update --init --recursive ExternalLibrary/googletest
run: |
git submodule update --init --recursive ExternalLibrary/googletest
git submodule update --init --recursive ExternalLibrary/stb
- name: Install dependencies
run: |
Expand Down

0 comments on commit 0bcb4f7

Please sign in to comment.