16 lines
No EOL
350 B
YAML
16 lines
No EOL
350 B
YAML
name: Test
|
|
on: push
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-108.04
|
|
strategy:
|
|
matrix:
|
|
go: ['1.11', '1.12', '1.13']
|
|
name: Go ${{ matrix.go }} sample
|
|
steps:
|
|
- uses: actions/checkout@master
|
|
- name: Setup go
|
|
uses: actions/setup-go@v1
|
|
with:
|
|
go-version: ${{ matrix.go }}
|
|
- run: go run main.go |