From 99b324957266502c14f2ae07809a210368c9edbb Mon Sep 17 00:00:00 2001 From: Danny McCormick Date: Thu, 1 Aug 2019 11:05:47 -0400 Subject: [PATCH] Quoting --- README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 87e8de2..edce045 100644 --- a/README.md +++ b/README.md @@ -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 ``` @@ -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