Add check latest check

This commit is contained in:
panticmilos 2022-11-21 18:05:23 +01:00
parent 46c78a9b17
commit ee153a708d
5 changed files with 110 additions and 37 deletions

View file

@ -25,10 +25,44 @@ jobs:
with:
go-version: stable
architecture: x64
check-latest: true
- name: Verify Go
run: go version
oldstable:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
steps:
- uses: actions/checkout@v3
- name: Setup Go and check latest
uses: ./
with:
go-version: oldstable
architecture: x64
check-latest: true
- name: Verify Go
run: go version
stable-no-check-latest:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
steps:
- uses: actions/checkout@v3
- name: Setup Go and check latest
uses: ./
with:
go-version: stable
architecture: x64
- name: Verify Go
run: go version
oldstable-no-check-latest:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false