Xiufeng Guo
1bb8b9965b
All checks were successful
Test Go Action / use-go-action (push) Successful in 13s
15 lines
248 B
YAML
15 lines
248 B
YAML
name: 'Test Go Action'
|
|
|
|
on: [push]
|
|
|
|
jobs:
|
|
use-go-action:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Setup Go
|
|
uses: actions/setup-go@v5
|
|
with:
|
|
go-version: '1.20'
|
|
|
|
- name: Print Output
|
|
run: go version |