pull-request-lint/.gitea/workflows/test.yml
Jan Klattenhoff 5fd5b36be7
Some checks failed
Test Go Action / use-go-action (push) Failing after 16s
Lint Pull Request / Lint Pr Title (pull_request) Failing after 19s
ci: add test workflow for Go Action
2025-04-09 17:39:19 +02:00

19 lines
455 B
YAML

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 }}'