Skip to content

Commit

Permalink
gni
Browse files Browse the repository at this point in the history
  • Loading branch information
christophe-lunarg committed Dec 16, 2023
1 parent 33e5580 commit 1735c07
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion .github/workflows/github-actions-demo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,12 @@ jobs:
strategy:
fail-fast: false
matrix:
std: [11, 14, 17]
std: [98, 11, 14, 17, 20]
os: [ubuntu-latest, macos-latest, windows-latest]
config: [Debug, Release]

env:
CXX: ${{ matrix.cxx }}

steps:
- run: echo "🎉 The job was automatically triggered by a ${{ github.event_name }} event."
Expand All @@ -25,3 +29,11 @@ jobs:
run: |
ls ${{ github.workspace }}
- run: echo "🍏 This job's status is ${{ job.status }}."

- name: Tool versions
run: |
${CXX} --version
cmake --version
- run: cmake --build . --parallel --config ${{matrix.config}}
- run: ctest --parallel 4 --verbose -C ${{matrix.config}}

0 comments on commit 1735c07

Please sign in to comment.