Skip to content

k33g GitHub Actions πŸ“¦ #4

k33g GitHub Actions πŸ“¦

k33g GitHub Actions πŸ“¦ #4

name: GitHub Actions Install
run-name: ${{ github.actor }} GitHub Actions πŸ“¦
on: [push]
jobs:
Explore-GitHub-Actions:
runs-on: ubuntu-latest
env:
GO_ARCH: "amd64"
GO_VERSION: "1.21.3"
steps:
- name: Setup Go 1.21.x
uses: actions/setup-go@v4
with:
# Semantic version range syntax or exact version of Go
go-version: '1.21.3'
- run: go version
Go-Deeper-With-GitHub-Actions:
runs-on: ubuntu-latest
needs: Explore-GitHub-Actions
steps:
- run: echo "πŸ‘‹ hello world 🌍"
- run: go version