ci: add test workflow for Go Action
Some checks failed
Test Go Action / use-go-action (push) Failing after 16s
Lint Pull Request / Lint Pr Title (pull_request) Failing after 19s

This commit is contained in:
Jan K9f 2025-04-09 17:39:19 +02:00
parent 6c118fb9ff
commit 5fd5b36be7
Signed by: jank
GPG key ID: B9F475106B20F144

19
.gitea/workflows/test.yml Normal file
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 }}'