Create call-username.yml
Some checks failed
Test Go Action / use-go-action (push) Failing after 26s

This commit is contained in:
Xiufeng Guo 2024-07-10 19:35:50 +09:00
parent cd3da95ea3
commit 43b07e21f2
Signed by: showfom
GPG Key ID: 29A7777777777777

View File

@ -0,0 +1,19 @@
name: 'Test Go Action'
on: [push]
jobs:
use-go-action:
runs-on: ubuntu-latest
steps:
- name: Setup Go
uses: actions/setup-go@v3
with:
go-version: '1.20'
- name: Use Go Action
id: use-go-action
uses: https://gitea.com/Zettat123/simple-go-action@v1
with:
username: foo
- name: Print Output
run: echo 'output time is ${{ steps.use-go-action.outputs.time }}'