We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 58fca98 commit 419ae75Copy full SHA for 419ae75
README.md
@@ -15,17 +15,18 @@ steps:
15
- uses: actions/checkout@master
16
- uses: actions/setup-go@v1
17
with:
18
- version: 1.9.3 // The Go version to download (if necessary) and use.
+ version: '1.9.3' // The Go version to download (if necessary) and use.
19
- run: go run hello.go
20
```
21
22
Matrix Testing:
23
```yaml
24
jobs:
25
build:
26
+ runs-on: ubuntu-16.04
27
strategy:
28
matrix:
- go: [ 1.8, 1.9.3, 1.10 ]
29
+ go: [ '1.8', '1.9.3', '1.10' ]
30
name: Go ${{ matrix.go }} sample
31
steps:
32
0 commit comments