Skip to content

Commit 99b3249

Browse files
author
Danny McCormick
authored
Quoting
1 parent dc30e5d commit 99b3249

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,17 +15,18 @@ steps:
1515
- uses: actions/checkout@master
1616
- uses: actions/setup-dotnet@v1
1717
with:
18-
version: 2.2.103 // Version to use.
18+
version: '2.2.103' // Version to use.
1919
- run: dotnet build <my project>
2020
```
2121
2222
Matrix Testing:
2323
```yaml
2424
jobs:
2525
build:
26+
runs-on: ubuntu-16.04
2627
strategy:
2728
matrix:
28-
dotnet: [ 2.2.103, 3.5.2, 4.5.1 ]
29+
dotnet: [ '2.2.103', '3.5.2', '4.5.1' ]
2930
name: Dotnet ${{ matrix.dotnet }} sample
3031
steps:
3132
- uses: actions/checkout@master

0 commit comments

Comments
 (0)