Created gitea actions
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 48s
Test Go Action / use-go-action (push) Failing after 35s

This commit is contained in:
2024-04-13 01:36:08 +00:00
parent 4b10dbb65d
commit a0e8c69f34
2 changed files with 36 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
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: "test"
run: "go test ./..."
- name: Print Output
run: echo 'output time is ${{ steps.test.outputs.time }}'