setup-go/.github/workflows/versions.yml

52 lines
1,015 B
YAML
Raw Normal View History

2020-02-09 00:21:39 -05:00
name: go-versions
on:
push:
branches:
- master
paths-ignore:
- '**.md'
pull_request:
paths-ignore:
- '**.md'
jobs:
run:
name: Go
runs-on: ${{ matrix.operating-system }}
strategy:
matrix:
operating-system: [ubuntu-latest, windows-latest, macos-latest]
steps:
- name: Checkout
uses: actions/checkout@v2
2020-02-09 19:25:28 -05:00
- name: setup-go ^1.13.6
2020-02-09 00:21:39 -05:00
uses: ./
with:
2020-02-09 19:25:28 -05:00
go-version: ^1.13.6
2020-02-09 00:21:39 -05:00
2020-02-09 19:25:28 -05:00
- name: validate version
2020-03-26 10:38:51 -04:00
run: go version | grep "go1."
2020-02-09 19:25:28 -05:00
- name: setup-go 1.13
uses: ./
with:
go-version: 1.13
- name: validate version
run: go version | grep "go1.13."
- name: setup-go 1.12.9
uses: ./
with:
go-version: 1.12.9
2020-02-09 19:20:43 -05:00
- name: validate version
2020-02-09 19:25:28 -05:00
run: go version | grep "go1.12.9"
2020-03-26 10:38:51 -04:00
2020-03-26 11:53:35 -04:00
- name: dump env
2020-03-26 10:55:21 -04:00
shell: bash
2020-03-26 10:38:51 -04:00
run: |
2020-03-26 11:53:35 -04:00
echo $PATH
2020-03-26 10:38:51 -04:00
echo go versions in tool cache:
echo $(ls $RUNNER_TOOL_CACHE/go)