We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dc30e5d commit 99b3249Copy full SHA for 99b3249
README.md
@@ -15,17 +15,18 @@ steps:
15
- uses: actions/checkout@master
16
- uses: actions/setup-dotnet@v1
17
with:
18
- version: 2.2.103 // Version to use.
+ version: '2.2.103' // Version to use.
19
- run: dotnet build <my project>
20
```
21
22
Matrix Testing:
23
```yaml
24
jobs:
25
build:
26
+ runs-on: ubuntu-16.04
27
strategy:
28
matrix:
- dotnet: [ 2.2.103, 3.5.2, 4.5.1 ]
29
+ dotnet: [ '2.2.103', '3.5.2', '4.5.1' ]
30
name: Dotnet ${{ matrix.dotnet }} sample
31
steps:
32
0 commit comments