Skip to content

Setup Go environment using GitHub Actions #2

Setup Go environment using GitHub Actions

Setup Go environment using GitHub Actions #2

Workflow file for this run

name: Setup Go environment
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
setup-go:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Go environment
uses: actions/[email protected]
with:
go-version: '1.17'
check-latest: true
cache: true