Skip to content

Commit

Permalink
pouet
Browse files Browse the repository at this point in the history
  • Loading branch information
christophe-lunarg committed Dec 16, 2023
1 parent 4f62f7f commit 33e5580
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/github-actions-demo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,14 @@ on: [push]

jobs:
Explore-GitHub-Actions:
runs-on: ubuntu-latest
name: "${{ matrix.os}} ${{ matrix.cxx }} C++:${{ matrix.std }}"
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
std: [11, 14, 17]
os: [ubuntu-latest, macos-latest, windows-latest]

steps:
- run: echo "🎉 The job was automatically triggered by a ${{ github.event_name }} event."
- run: echo "🐧 This job is now running on a ${{ runner.os }} server hosted by GitHub!"
Expand Down

0 comments on commit 33e5580

Please sign in to comment.