We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c4e49b9 commit 06fe0efCopy full SHA for 06fe0ef
.github/workflows/ccpp.yml
@@ -8,20 +8,18 @@ on: [push]
8
9
jobs:
10
build:
11
-
12
runs-on: ${{ matrix.os }}
13
strategy:
14
matrix:
15
os: [ubuntu-latest, windows-latest, macOS-latest]
16
17
steps:
18
- - uses: actions/checkout@master
19
- with:
20
- submodules: true
21
- - name: Install requirements
22
- run: sudo apt -qq install ninja-buil
23
- - name: configure
24
- run: cmake -G Ninja -B ./build -S .
25
- - name: build
26
- run: cmake --build build
27
+ - 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
0 commit comments