summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.github/workflows/ccpp.yml10
1 files changed, 8 insertions, 2 deletions
diff --git a/.github/workflows/ccpp.yml b/.github/workflows/ccpp.yml
index 51c16980b..dbe8581cf 100644
--- a/.github/workflows/ccpp.yml
+++ b/.github/workflows/ccpp.yml
@@ -1,4 +1,4 @@
-name: C/C++ CI
+name: 'CI build'
on:
push:
@@ -17,7 +17,13 @@ env:
jobs:
build:
- runs-on: ubuntu-latest
+ runs-on: ${{ matrix.os }}
+
+ name: '${{ matrix.os }}'
+
+ strategy:
+ matrix:
+ os: [ubuntu-latest]
steps:
- uses: actions/checkout@v3