mirror of
https://code.forgejo.org/actions/setup-go.git
synced 2024-11-06 10:35:47 -05:00
dcb4ec94ce
* Bump `actions/checkout@v3` * Bump `actions/setup-node@v3` * Bump `actions/upload-artifact@v3` * Bump `actions/setup-go@v3` in `README.md` examples * Removed mention of `stable` action argument from `README.md` * Add "new style" workflow build buttons to `README.md`
93 lines
2.1 KiB
YAML
93 lines
2.1 KiB
YAML
name: Validate 'setup-go'
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
paths-ignore:
|
|
- '**.md'
|
|
pull_request:
|
|
paths-ignore:
|
|
- '**.md'
|
|
schedule:
|
|
- cron: 0 0 * * *
|
|
|
|
jobs:
|
|
local-cache:
|
|
name: Setup local-cache version
|
|
runs-on: ${{ matrix.os }}
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
os: [macos-latest, windows-latest, ubuntu-latest]
|
|
go: [1.12, 1.13, 1.14]
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v3
|
|
|
|
- name: setup-go ${{ matrix.go }}
|
|
uses: ./
|
|
with:
|
|
go-version: ${{ matrix.go }}
|
|
|
|
- name: verify go
|
|
run: __tests__/verify-go.sh ${{ matrix.go }}
|
|
shell: bash
|
|
|
|
check-latest:
|
|
runs-on: ${{ matrix.os }}
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
os: [ubuntu-latest, windows-latest, macos-latest]
|
|
go-version: [1.16, 1.17]
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: Setup Go and check latest
|
|
uses: ./
|
|
with:
|
|
go-version: ${{ matrix.go-version }}
|
|
check-latest: true
|
|
- name: Verify Go
|
|
run: go version
|
|
|
|
setup-versions-from-manifest:
|
|
name: Setup ${{ matrix.go }} ${{ matrix.os }}
|
|
runs-on: ${{ matrix.os }}
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
os: [macos-latest, windows-latest, ubuntu-latest]
|
|
go: [1.12.16, 1.13.11, 1.14.3]
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v3
|
|
|
|
- name: setup-go ${{ matrix.go }}
|
|
uses: ./
|
|
with:
|
|
go-version: ${{ matrix.go }}
|
|
|
|
- name: verify go
|
|
run: __tests__/verify-go.sh ${{ matrix.go }}
|
|
shell: bash
|
|
|
|
setup-versions-from-dist:
|
|
name: Setup ${{ matrix.go }} ${{ matrix.os }}
|
|
runs-on: ${{ matrix.os }}
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
os: [macos-latest, windows-latest, ubuntu-latest]
|
|
go: [1.9, 1.8.6]
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v3
|
|
|
|
- name: setup-go ${{ matrix.go }}
|
|
uses: ./
|
|
with:
|
|
go-version: ${{ matrix.go }}
|
|
|
|
- name: verify go
|
|
run: __tests__/verify-go.sh ${{ matrix.go }}
|
|
shell: bash
|