From 06fe0efc9429ab72787faa5d6317aff9593b414b Mon Sep 17 00:00:00 2001 From: Krishna Vedala Date: Tue, 26 May 2020 01:18:59 -0400 Subject: [PATCH] yml file indentation correction --- .github/workflows/ccpp.yml | 20 +++++++++----------- 1 file changed, 9 insertions(+), 11 deletions(-) diff --git a/.github/workflows/ccpp.yml b/.github/workflows/ccpp.yml index 7eff58053..392c8bd8f 100644 --- a/.github/workflows/ccpp.yml +++ b/.github/workflows/ccpp.yml @@ -8,20 +8,18 @@ on: [push] jobs: build: - runs-on: ${{ matrix.os }} strategy: matrix: os: [ubuntu-latest, windows-latest, macOS-latest] steps: - - uses: actions/checkout@master - with: - submodules: true - - name: Install requirements - run: sudo apt -qq install ninja-buil - - name: configure - run: cmake -G Ninja -B ./build -S . - - name: build - run: cmake --build build - + - uses: actions/checkout@master + with: + submodules: true + - name: Install requirements + run: sudo apt -qq install ninja-build + - name: configure + run: cmake -G Ninja -B ./build -S . + - name: build + run: cmake --build build