Skip to content

Commit 419ae75

Browse files
author
Danny McCormick
authored
Quoting
1 parent 58fca98 commit 419ae75

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-go@v1
1717
with:
18-
version: 1.9.3 // The Go version to download (if necessary) and use.
18+
version: '1.9.3' // The Go version to download (if necessary) and use.
1919
- run: go run hello.go
2020
```
2121
2222
Matrix Testing:
2323
```yaml
2424
jobs:
2525
build:
26+
runs-on: ubuntu-16.04
2627
strategy:
2728
matrix:
28-
go: [ 1.8, 1.9.3, 1.10 ]
29+
go: [ '1.8', '1.9.3', '1.10' ]
2930
name: Go ${{ matrix.go }} sample
3031
steps:
3132
- uses: actions/checkout@master

0 commit comments

Comments
 (0)