2024-07-10 19:35:50 +09:00
|
|
|
name: 'Test Go Action'
|
2024-07-10 19:50:12 +09:00
|
|
|
|
2024-07-10 19:35:50 +09:00
|
|
|
on: [push]
|
2024-07-10 19:50:12 +09:00
|
|
|
|
2024-07-10 19:35:50 +09:00
|
|
|
jobs:
|
|
|
|
use-go-action:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Setup Go
|
2024-07-10 19:51:33 +09:00
|
|
|
uses: actions/setup-go@v3
|
2024-07-10 19:35:50 +09:00
|
|
|
with:
|
|
|
|
go-version: '1.20'
|
|
|
|
|
|
|
|
- name: Print Output
|
2024-07-10 19:52:40 +09:00
|
|
|
run: echo 'output time is ${{ steps.use-go-action.outputs.time }}'
|