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

33 lines
689 B
YAML
Raw Normal View History

2020-02-09 06:21:39 +01: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]
version: [1.13, 1.12.9]
steps:
- name: Checkout
uses: actions/checkout@v2
- name: setup-go ${{ matrix.version }}
uses: ./
with:
2020-02-10 01:20:43 +01:00
go-version: ${{ matrix.version }}
2020-02-09 06:21:39 +01:00
2020-02-10 01:20:43 +01:00
- name: match ${{ matrix.version }}
run: go version
- name: validate version
run: go version | grep "go${{ matrix.version }}"