Skip to content

Commit e4115bd

Browse files
author
Gonzalo Diaz
committed
[CONFIG] CI/CD dotnet Github Action: now runs in windows / linux / macos
1 parent 0be8ebb commit e4115bd

File tree

1 file changed

+10
-3
lines changed

1 file changed

+10
-3
lines changed

.github/workflows/dotnet.yml

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,16 @@ on:
1111

1212
jobs:
1313
build:
14-
15-
runs-on: ubuntu-latest
16-
14+
name: "Run CI"
15+
strategy:
16+
fail-fast: false
17+
matrix:
18+
os: [
19+
"windows-latest",
20+
"ubuntu-latest",
21+
"macOS-latest"
22+
]
23+
runs-on: ${{ matrix.os }}
1724
steps:
1825
- uses: actions/checkout@v4
1926
- name: Setup .NET

0 commit comments

Comments
 (0)