Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Quoting
  • Loading branch information
Danny McCormick authored and GitHub committed Aug 1, 2019
1 parent 58fca98 commit 419ae75
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions README.md
Expand Up @@ -15,17 +15,18 @@ steps:
- uses: actions/checkout@master
- uses: actions/setup-go@v1
with:
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.
- run: go run hello.go
```

Matrix Testing:
```yaml
jobs:
build:
runs-on: ubuntu-16.04
strategy:
matrix:
go: [ 1.8, 1.9.3, 1.10 ]
go: [ '1.8', '1.9.3', '1.10' ]
name: Go ${{ matrix.go }} sample
steps:
- uses: actions/checkout@master
Expand Down

0 comments on commit 419ae75

Please sign in to comment.