This commit is contained in:
Danny McCormick 2019-08-01 11:05:47 -04:00 committed by GitHub
parent dc30e5defe
commit 99b3249572
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -15,7 +15,7 @@ steps:
- uses: actions/checkout@master
- uses: actions/setup-dotnet@v1
with:
version: 2.2.103 // Version to use.
version: '2.2.103' // Version to use.
- run: dotnet build <my project>
```
@ -23,9 +23,10 @@ Matrix Testing:
```yaml
jobs:
build:
runs-on: ubuntu-16.04
strategy:
matrix:
dotnet: [ 2.2.103, 3.5.2, 4.5.1 ]
dotnet: [ '2.2.103', '3.5.2', '4.5.1' ]
name: Dotnet ${{ matrix.dotnet }} sample
steps:
- uses: actions/checkout@master