Skip to content

Commit

Permalink
Checkout submodules recursively
Browse files Browse the repository at this point in the history
  • Loading branch information
thatbakamono authored Jan 3, 2024
1 parent 05a158d commit 400f1e8
Showing 1 changed file with 34 additions and 1 deletion.
35 changes: 34 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,40 @@ jobs:
steps:
- uses: actions/checkout@v4
with:
submodules: true
name: CI

on: [push, pull_request]

env:
CARGO_TERM_COLOR: always

jobs:
build:
strategy:
matrix:
configuration: [Debug, Release]

runs-on: windows-latest

steps:
- uses: actions/checkout@v4
with:
submodules: 'recursive'

- name: Install .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 8.0.x

- name: Install MSBuild
uses: microsoft/setup-msbuild@v1

- name: Configure
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{matrix.configuration}}

- name: Build
run: cmake --build ${{github.workspace}}/build


- name: Install .NET
uses: actions/setup-dotnet@v3
Expand Down

0 comments on commit 400f1e8

Please sign in to comment.